]> git.donarmstrong.com Git - dsa-puppet.git/blob - 3rdparty/modules/apache/templates/mod/status.conf.erb
try again, with puppetforge modules, correctly included now
[dsa-puppet.git] / 3rdparty / modules / apache / templates / mod / status.conf.erb
1 <Location <%= @status_path %>>
2     SetHandler server-status
3     <%- if scope.function_versioncmp([@apache_version, '2.4']) >= 0 -%>
4     Require ip <%= Array(@allow_from).join(" ") %>
5     <%- else -%>
6     Order deny,allow
7     Deny from all
8     Allow from <%= Array(@allow_from).join(" ") %>
9     <%- end -%>
10 </Location>
11 ExtendedStatus <%= @extended_status %>
12
13 <IfModule mod_proxy.c>
14     # Show Proxy LoadBalancer status in mod_status
15     ProxyStatus On
16 </IfModule>