Add and configure modules needed for domtool
[hcoop/zz_old/debian/hcoop-apache2-config.git] / files / mods-available / status.conf.hcoop
... / ...
CommitLineData
1<IfModule mod_status.c>
2#
3# Allow server status reports generated by mod_status,
4# with the URL of http://servername/server-status
5# Uncomment and change the "192.0.2.0/24" to allow access from other hosts.
6#
7<Location /server-status>
8 SetHandler server-status
9 Order allow,deny
10 Allow from all
11# Deny from all
12# Allow from 127.0.0.1 ::1
13# Allow from 192.0.2.0/24
14</Location>
15
16# Keep track of extended status information for each request
17ExtendedStatus On
18
19# Determine if mod_status displays the first 63 characters of a request or
20# the last 63, assuming the request itself is greater than 63 chars.
21# Default: Off
22#SeeRequestTail On
23
24
25<IfModule mod_proxy.c>
26 # Show Proxy LoadBalancer status in mod_status
27 ProxyStatus On
28</IfModule>
29
30
31</IfModule>