]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Use the 2.3-style access control properly (I hope).
authorJoshua Slive <slive@apache.org>
Sun, 23 Jul 2006 21:10:05 +0000 (21:10 +0000)
committerJoshua Slive <slive@apache.org>
Sun, 23 Jul 2006 21:10:05 +0000 (21:10 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@424819 13f79535-47bb-0310-9956-ffa450edef68

docs/conf/extra/httpd-info.conf.in

index 54c96dad9e6b806dfdf16ed20b2c9f1794c761aa..1f8058ba3e08b99ab2a5ef1be5c4fe91e63e4d0f 100644 (file)
@@ -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>