]> git.pld-linux.org Git - packages/apache.git/blame_incremental - apache-mod_status.conf
Disable compression on the SSL level (CRIME attack).
[packages/apache.git] / apache-mod_status.conf
... / ...
CommitLineData
1# $Id$
2LoadModule status_module modules/mod_status.so
3
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),
9
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.
15
16<Location /server-status>
17 SetHandler server-status
18 Order deny,allow
19 Deny from all
20 Allow from 127.0.0.1
21</Location>
22
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
30</IfModule>
This page took 0.02902 seconds and 4 git commands to generate.