Author: slive
Date: Sun Jul 23 14:10:05 2006
New Revision: 424819
URL: http://svn.apache.org/viewvc?rev=424819&view=rev
Log:
Use the 2.3-style access control properly (I hope).
Modified:
httpd/httpd/trunk/docs/conf/extra/httpd-info.conf.in
Modified: httpd/httpd/trunk/docs/conf/extra/httpd-info.conf.in
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/conf/extra/httpd-info.conf.in?rev=424819&r1=424818&r2=424819&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/conf/extra/httpd-info.conf.in (original)
+++ httpd/httpd/trunk/docs/conf/extra/httpd-info.conf.in Sun Jul 23 14:10:05 2006
@@ -3,7 +3,8 @@
# and the configuration of the server.
#
# Required modules: mod_status (for the server-status handler),
-# mod_info (for the server-info handler)
+# mod_info (for the server-info handler),
+# mod_authz_core, mod_authz_host
#
# Allow server status reports generated by mod_status,
@@ -13,7 +14,7 @@
<Location /server-status>
SetHandler server-status
Require host .example.com
- Allow from 127
+ Require ip 127
</Location>
#
@@ -31,5 +32,5 @@
<Location /server-info>
SetHandler server-info
Require host .example.com
- Allow from 127
+ Require ip 127
</Location>
|