]> git.pld-linux.org Git - packages/apache.git/blame_incremental - apache-mod_info.conf
- don't process commented out entries
[packages/apache.git] / apache-mod_info.conf
... / ...
CommitLineData
1LoadModule info_module modules/mod_info.so
2
3# Get information about the requests being processed by the server
4# and the configuration of the server.
5#
6# Required modules: mod_info (for the server-info handler), mod_authz_host (ACL)
7
8<IfModule mod_info.c>
9#
10# Allow remote server configuration reports, with the URL of
11# http://servername/server-info (requires that mod_info.c be loaded).
12# Change the ".example.com" to match your domain to enable.
13#
14<Location /server-info>
15 SetHandler server-info
16 # Require host .example.com
17 # Require ip 127
18 Require local
19</Location>
20
21</IfModule>
This page took 0.028224 seconds and 4 git commands to generate.