fix for apache 2.4 OBS-URL: https://build.opensuse.org/request/show/293256 OBS-URL: https://build.opensuse.org/package/show/server:proxy/sarg?expand=0&rev=43
20 lines
423 B
Plaintext
20 lines
423 B
Plaintext
Alias /sarg /srv/www/sarg
|
|
|
|
<Directory /srv/www/sarg>
|
|
DirectoryIndex index.html
|
|
|
|
<IfModule mod_authz_core.c>
|
|
# Apache 2.4
|
|
Require local
|
|
# Require host .your.domain # this must change to domain which sould have access
|
|
</IfModule>
|
|
<IfModule !mod_authz_core.c>
|
|
# Apache 2.2
|
|
Order deny,allow
|
|
Deny from all
|
|
Allow from 127.0.0.1
|
|
</IfModule>
|
|
|
|
</Directory>
|
|
|