Petr Gajdos
259521aeb2
OBS-URL: https://build.opensuse.org/package/show/Apache/apache2?expand=0&rev=492
21 lines
466 B
Plaintext
21 lines
466 B
Plaintext
#
|
|
# Allow remote server configuration reports, with the URL of
|
|
# http://servername/server-info (requires that mod_info.c be loaded).
|
|
#
|
|
# see http://httpd.apache.org/docs/2.4/mod/mod_info.html
|
|
#
|
|
<IfModule mod_info.c>
|
|
<Location /server-info>
|
|
SetHandler server-info
|
|
<IfModule !mod_access_compat.c>
|
|
Require local
|
|
</IfModule>
|
|
<IfModule mod_access_compat.c>
|
|
Order deny,allow
|
|
Deny from all
|
|
Allow from localhost
|
|
</IfModule>
|
|
</Location>
|
|
</IfModule>
|
|
|