Petr Gajdos
259521aeb2
OBS-URL: https://build.opensuse.org/package/show/Apache/apache2?expand=0&rev=492
21 lines
447 B
Plaintext
21 lines
447 B
Plaintext
#
|
|
# Allow server status reports generated by mod_status,
|
|
# with the URL of http://servername/server-status
|
|
#
|
|
# see http://httpd.apache.org/docs/2.4/mod/mod_status.html
|
|
#
|
|
<IfModule mod_status.c>
|
|
<Location /server-status>
|
|
SetHandler server-status
|
|
<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>
|
|
|