]> TLD Linux GIT Repositories - packages/apache.git/blob - apache-mod_info.conf
- updated to 2.4.48
[packages/apache.git] / apache-mod_info.conf
1 LoadModule 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         <IfModule mod_access_compat.c>
20                 Order deny,allow
21                 Deny from all
22                 Allow from 127.0.0.1
23         </IfModule>
24 </Location>
25
26 </IfModule>