X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/985c2fc143fde1f5c74b587a617baf79e8c58db1..727eef9fdc54a7389929495ddc6007dcacf3fd36:/cookbooks/tilecache/recipes/default.rb?ds=inline diff --git a/cookbooks/tilecache/recipes/default.rb b/cookbooks/tilecache/recipes/default.rb index 5b44be21f..18aa14e14 100644 --- a/cookbooks/tilecache/recipes/default.rb +++ b/cookbooks/tilecache/recipes/default.rb @@ -21,6 +21,27 @@ include_recipe "squid" tilecaches = search(:node, "roles:tilecache").sort_by { |n| n[:hostname] } +tilecaches.each do |cache| + cache.ipaddresses(:family => :inet, :role => :external).sort.each do |address| + firewall_rule "accept-squid" do + action :accept + source "net:#{address}" + dest "fw" + proto "tcp:syn" + dest_ports "3128" + source_ports "1024:" + end + firewall_rule "accept-squid-icp" do + action :accept + source "net:#{address}" + dest "fw" + proto "udp" + dest_ports "3130" + source_ports "1024:" + end + end +end + squid_fragment "tilecache" do template "squid.conf.erb" variables :caches => tilecaches