ansible/files/httpd/apachestatus.conf

15 lines
275 B
Text
Raw Normal View History

ExtendedStatus on
<Location /apache-status>
SetHandler server-status
2018-01-08 00:55:47 +00:00
<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>
2018-01-08 00:55:47 +00:00
</IfModule>
</Location>