]> git.openstreetmap.org Git - chef.git/blob - cookbooks/apache/templates/default/status.conf.erb
Disable birthday recipe while under dev
[chef.git] / cookbooks / apache / templates / default / status.conf.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 <IfModule mod_status.c>
4
5 ExtendedStatus On
6
7 <Location /server-status>
8     SetHandler server-status
9 <% node.ipaddresses.sort.each do |address| -%>
10     Require ip <%= address %>
11 <% end -%>
12     Require ip 127.0.1.1
13     Require ip 127.0.0.1
14     Require ip ::1
15 <% @hosts.each do |host| -%>
16     Require ip <%= host %>
17 <% end -%>
18 </Location>
19
20 <IfModule mod_proxy.c>
21     ProxyStatus On
22 </IfModule>
23
24 </IfModule>