Blame docs/conf/extra/httpd-info.conf.in

Packit 90a5c9
#
Packit 90a5c9
# Get information about the requests being processed by the server
Packit 90a5c9
# and the configuration of the server.
Packit 90a5c9
#
Packit 90a5c9
# Required modules: mod_authz_core, mod_authz_host,
Packit 90a5c9
#                   mod_info (for the server-info handler),
Packit 90a5c9
#                   mod_status (for the server-status handler)
Packit 90a5c9
Packit 90a5c9
#
Packit 90a5c9
# Allow server status reports generated by mod_status,
Packit 90a5c9
# with the URL of http://servername/server-status
Packit 90a5c9
# Change the ".example.com" to match your domain to enable.
Packit 90a5c9
Packit 90a5c9
<Location /server-status>
Packit 90a5c9
    SetHandler server-status
Packit 90a5c9
    Require host .example.com
Packit 90a5c9
    Require ip 127
Packit 90a5c9
</Location>
Packit 90a5c9
Packit 90a5c9
#
Packit 90a5c9
# ExtendedStatus controls whether Apache will generate "full" status
Packit 90a5c9
# information (ExtendedStatus On) or just basic information (ExtendedStatus
Packit 90a5c9
# Off) when the "server-status" handler is called. The default is Off.
Packit 90a5c9
#
Packit 90a5c9
#ExtendedStatus On
Packit 90a5c9
Packit 90a5c9
#
Packit 90a5c9
# Allow remote server configuration reports, with the URL of
Packit 90a5c9
#  http://servername/server-info (requires that mod_info.c be loaded).
Packit 90a5c9
# Change the ".example.com" to match your domain to enable.
Packit 90a5c9
#
Packit 90a5c9
<Location /server-info>
Packit 90a5c9
    SetHandler server-info
Packit 90a5c9
    Require host .example.com
Packit 90a5c9
    Require ip 127
Packit 90a5c9
</Location>