Commit be1eaa85 authored by Joshua Slive's avatar Joshua Slive
Browse files

Use the 2.3-style access control properly (I hope).


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@424819 13f79535-47bb-0310-9956-ffa450edef68
parent ebcb179b
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -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>