1 LoadModule status_module modules/mod_status.so
4 # Get information about the requests being processed by the server
5 # and the configuration of the server.
7 # Required modules: mod_status (for the server-status handler),
9 <IfModule mod_status.c>
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.
15 <Location /server-status>
16 SetHandler server-status
17 # Require host .example.com
20 <IfModule mod_access_compat.c>
28 # ExtendedStatus controls whether Apache will generate "full" status
29 # information (ExtendedStatus On) or just basic information (ExtendedStatus
30 # Off) when the "server-status" handler is called. The default is Off.