]> git.pld-linux.org Git - packages/apache.git/blob - apache-mod_status.conf
- reverse mod_proxy requires mod_cache
[packages/apache.git] / apache-mod_status.conf
1 LoadModule status_module        lib/apache/mod_status.so
2
3 <IfModule mod_status.c>
4
5 # Allow server status reports, with the URL of http://servername/server-status
6 # Change the ".your_domain.com" to match your domain to enable.
7
8 <Location /server-status>
9         SetHandler server-status
10
11         order deny,allow
12         deny from all
13         allow from 127.0.0.1
14 </Location>
15
16 </IfModule>
This page took 0.045378 seconds and 3 git commands to generate.