]> git.pld-linux.org Git - packages/apache1.git/blob - apache1-mod_status.conf
- add missing config reload for -defaultindex
[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         Order deny,allow
12         Deny from all
13         Allow from 127.0.0.1
14 </Location>
15
16 ### ExtendedStatus
17 # controls whether Apache will generate "full" status information
18 # (ExtendedStatus On) or just basic information (ExtendedStatus Off) when
19 # the "server-status" handler is called. The default is Off.
20 #ExtendedStatus On
21
22 </IfModule>
This page took 0.030054 seconds and 3 git commands to generate.