]> git.openstreetmap.org Git - chef.git/blob - cookbooks/apache/templates/default/info.conf.erb
add rtnf ssh key
[chef.git] / cookbooks / apache / templates / default / info.conf.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 <IfModule mod_info.c>
4
5 <Location /server-info>
6     SetHandler server-info
7 <% node.ipaddresses.sort.each do |address| -%>
8     Require ip <%= address %>
9 <% end -%>
10     Require ip 127.0.1.1
11     Require ip 127.0.0.1
12     Require ip ::1
13 <% @hosts.each do |host| -%>
14     Require ip <%= host %>
15 <% end -%>
16 </Location>
17
18 </IfModule>