# 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,
<Location /server-status>
SetHandler server-status
Require host .example.com
- Allow from 127
+ Require ip 127
</Location>
#
<Location /server-info>
SetHandler server-info
Require host .example.com
- Allow from 127
+ Require ip 127
</Location>