]> git.pld-linux.org Git - packages/apache1.git/blob - apache1-mod_status.conf
rel 15; builds
[packages/apache1.git] / apache1-mod_status.conf
1 # $Id$
2 LoadModule status_module modules/mod_status.so
3
4 # Allow server status reports, with the URL of http://servername/server-status
5 # Change the ".your_domain.com" to match your domain to enable.
6
7 <IfModule mod_status.c>
8 <Location /server-status>
9         SetHandler server-status
10
11         <IfModule mod_access.c>
12                 Order deny,allow
13                 Deny from all
14                 Allow from 127.0.0.1
15         </IfModule>
16 </Location>
17
18 ### ExtendedStatus
19 # controls whether Apache will generate "full" status information
20 # (ExtendedStatus On) or just basic information (ExtendedStatus Off) when
21 # the "server-status" handler is called. The default is Off.
22 #ExtendedStatus On
23
24 </IfModule>
This page took 0.048001 seconds and 3 git commands to generate.