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