Add status/info support and authz_host

- mod_info + .conf
- mod_status + .conf
- mod_authz_host
This commit is contained in:
Sven Velt 2016-10-28 11:54:13 +02:00
parent d9f2bccd7f
commit f0ba0f2d60
5 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,2 @@
# Depends: authz_core
LoadModule authz_host_module /usr/libexec/httpd/mod_authz_host.so

10
mods-available/info.conf Normal file
View file

@ -0,0 +1,10 @@
# Depends: authz_host
<IfModule mod_info.c>
<Location /server-info>
SetHandler server-info
Require local
</Location>
</IfModule>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

2
mods-available/info.load Normal file
View file

@ -0,0 +1,2 @@
# Suggests: .conf
LoadModule info_module /usr/libexec/httpd/mod_info.so

View file

@ -0,0 +1,13 @@
# Depends: authz_host
<IfModule mod_status.c>
<Location /server-status>
SetHandler server-status
Require local
</Location>
<IfModule mod_proxy.c>
ProxyStatus On
</IfModule>
</IfModule>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

View file

@ -0,0 +1,2 @@
# Suggests: .conf
LoadModule status_module /usr/libexec/httpd/mod_status.so