]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/apache2/files/common/etc/apache2/conf.d/server-status
(www) Add redirections for some old Refresh hacks
[dsa-puppet.git] / modules / apache2 / files / common / etc / apache2 / conf.d / server-status
1 ##
2 ## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
3 ## USE: git clone git+ssh://$USER@puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet.git
4 ##
5
6 <IfModule mod_status.c>
7     #
8     # Allow server status reports generated by mod_status,
9     # with the URL of http://servername/server-status
10     # Change the ".example.com" to match your domain to enable.
11     #
12     ExtendedStatus on
13     <Location /server-status>
14         SetHandler server-status
15         Order deny,allow
16         Deny from all
17         Allow from 127.0.0.1
18     </Location>
19 </IfModule>