]> git.ipfire.org Git - ipfire-2.x.git/blob - config/httpd/mod_status.conf
dc7312227b2ad62af04a989677a600e4e2043e4c
[ipfire-2.x.git] / config / httpd / mod_status.conf
1 #
2 # Allow server status reports generated by mod_status,
3 # with the URL of http://servername/server-status
4 #
5 # see http://httpd.apache.org/docs-2.0/mod/mod_status.html
6 #
7 <IfModule mod_status.c>
8 <Location /server-status>
9 SetHandler server-status
10 Order deny,allow
11 Deny from all
12 Allow from localhost
13 </Location>
14 </IfModule>