2006-12-20 18:01:15 +01:00
|
|
|
#
|
|
|
|
# Allow server status reports generated by mod_status,
|
|
|
|
# with the URL of http://servername/server-status
|
|
|
|
#
|
|
|
|
# see http://httpd.apache.org/docs-2.2/mod/mod_status.html
|
|
|
|
#
|
|
|
|
<IfModule mod_status.c>
|
|
|
|
<Location /server-status>
|
|
|
|
SetHandler server-status
|
|
|
|
Order deny,allow
|
|
|
|
Deny from all
|
2008-04-20 21:03:37 +02:00
|
|
|
Allow from localhost 127.0.0.1
|
2006-12-20 18:01:15 +01:00
|
|
|
</Location>
|
|
|
|
</IfModule>
|
|
|
|
|