Upstream config updates (Lucid->Precise)
[sysconfig/apache2.git] / mods-available / status.conf
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 deny,allow
10     Deny from all
11     Allow from 127.0.0.1 ::1
12 #    Allow from 192.0.2.0/24
13 </Location>
14
15 # Keep track of extended status information for each request
16 ExtendedStatus On
17
18 # Determine if mod_status displays the first 63 characters of a request or
19 # the last 63, assuming the request itself is greater than 63 chars.
20 # Default: Off
21 #SeeRequestTail On
22
23
24 <IfModule mod_proxy.c>
25     # Show Proxy LoadBalancer status in mod_status
26     ProxyStatus On
27 </IfModule>
28
29
30 </IfModule>