status.conf 647 B

123456789101112131415161718192021222324
  1. # Allow server status reports generated by mod_status,
  2. # with the URL of http://servername/server-status
  3. # Uncomment and change the "192.0.2.0/24" to allow access from other hosts.
  4. <Location /server-status>
  5. SetHandler server-status
  6. Require local
  7. #Require ip 192.0.2.0/24
  8. </Location>
  9. # Keep track of extended status information for each request
  10. ExtendedStatus On
  11. # Determine if mod_status displays the first 63 characters of a request or
  12. # the last 63, assuming the request itself is greater than 63 chars.
  13. # Default: Off
  14. #SeeRequestTail On
  15. <IfModule mod_proxy.c>
  16. # Show Proxy LoadBalancer status in mod_status
  17. ProxyStatus On
  18. </IfModule>