ansible/files/httpd/apachestatus.conf
2018-01-08 00:55:47 +00:00

14 lines
275 B
Text

ExtendedStatus on
<Location /apache-status>
SetHandler server-status
<IfModule mod_authz_core.c>
# Apache 2.4
<RequireAny>
Require ip 127.0.0.1
Require ip ::1
Require host localhost
Require valid-user
</RequireAny>
</IfModule>
</Location>