Ich möchte einzelne Datei in einer password geschützten Location freigeben.
Code: Alles auswählen
<Location /netdata/>
AuthType Basic
AuthName "Protected site"
AuthUserFile /etc/apache2/.htpasswd
Require valid-user
Order deny,allow
Allow from all
</Location>
<Files /netdata/api/v1/badge.svg>
Allow from all
</Files>
Geht es überhaupt?
Hinzu kommt , dass das /netdata/ nicht wirklich eine subdomain ist, also nicht unter domain ist, sondern via proxypass gemappt ist
Edit JTH: Von „Smalltalk“ nach „Web- und Mailserver“ verschoben.
Lösung:
Code: Alles auswählen
<Location /netdata/api/v1/badge.svg>
Satisfy any
Allow from all
AllowOverride None
Require all granted
</Location>