]> git.pld-linux.org Git - packages/apache.git/blame_incremental - apache-mod_status.conf
- up to 2.4.4; fixes CVE-2012-3499, CVE-2012-4558
[packages/apache.git] / apache-mod_status.conf
... / ...
CommitLineData
1LoadModule status_module modules/mod_status.so
2
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),
8
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.
14
15<Location /server-status>
16 SetHandler server-status
17 # Require host .example.com
18 # Require ip 127
19 Require local
20</Location>
21
22#
23# ExtendedStatus controls whether Apache will generate "full" status
24# information (ExtendedStatus On) or just basic information (ExtendedStatus
25# Off) when the "server-status" handler is called. The default is Off.
26#
27#ExtendedStatus On
28
29</IfModule>
This page took 0.028423 seconds and 4 git commands to generate.