1 --- docs/conf/extra/httpd-info.conf.in.~1~ 2010-06-15 15:05:13.000000000 +0400
2 +++ docs/conf/extra/httpd-info.conf.in 2014-02-25 13:48:21.670036530 +0400
4 # with the URL of http://servername/server-status
5 # Change the ".example.com" to match your domain to enable.
7 +<IfModule mod_status.c>
8 <Location /server-status>
9 SetHandler server-status
10 - Require host .example.com
12 + #Require host .example.com
13 + # Allow access from localhost
14 + Require ip 127.0.0.1
19 # Off) when the "server-status" handler is called. The default is Off.
25 # Allow remote server configuration reports, with the URL of
26 # http://servername/server-info (requires that mod_info.c be loaded).
27 # Change the ".example.com" to match your domain to enable.
29 +<IfModule mod_status.c>
30 <Location /server-info>
31 SetHandler server-info
32 - Require host .example.com
34 + #Require host .example.com
35 + # Allow access from localhost
36 + Require ip 127.0.0.1