]> git.pld-linux.org Git - packages/apache.git/blame - apache-mod_status.conf
- typo
[packages/apache.git] / apache-mod_status.conf
CommitLineData
1fee6743 1# $Id$
408714fc 2LoadModule status_module modules/mod_status.so
9d781f9b 3
b0bdceac
ER
4#
5# Get information about the requests being processed by the server
6# and the configuration of the server.
7#
8# Required modules: mod_status (for the server-status handler),
9d781f9b 9
b0bdceac
ER
10<IfModule mod_status.c>
11#
12# Allow server status reports generated by mod_status,
13# with the URL of http://servername/server-status
14# Change the ".example.com" to match your domain to enable.
6602e801 15
16<Location /server-status>
408714fc
ER
17 SetHandler server-status
18 Order deny,allow
19 Deny from all
20 Allow from 127.0.0.1
6602e801 21</Location>
22
b0bdceac
ER
23#
24# ExtendedStatus controls whether Apache will generate "full" status
25# information (ExtendedStatus On) or just basic information (ExtendedStatus
26# Off) when the "server-status" handler is called. The default is Off.
27#
28#ExtendedStatus On
29
9d781f9b 30</IfModule>
This page took 0.042328 seconds and 4 git commands to generate.