]> TLD Linux GIT Repositories - packages/apache.git/blob - apache-mod_info.conf
Revert "- noone cares for those cvs lines"
[packages/apache.git] / apache-mod_info.conf
1 # $Id: apache-mod_info.conf,v 1.9 2005/12/21 13:27:28 glen Exp $
2 LoadModule info_module          modules/mod_info.so
3
4 # Get information about the requests being processed by the server
5 # and the configuration of the server.
6 #
7 # Required modules: mod_info (for the server-info handler), mod_authz_host (ACL)
8
9 <IfModule mod_info.c>
10 #
11 # Allow remote server configuration reports, with the URL of
12 #  http://servername/server-info (requires that mod_info.c be loaded).
13 # Change the ".example.com" to match your domain to enable.
14 #
15 <Location /server-info>
16         SetHandler server-info
17         Order deny,allow
18         Deny from all
19         Allow from 127.0.0.1
20 </Location>
21
22 </IfModule>