X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/5d7a8f818d35fc59408204ff7ca10c5eef541569..e3937af5494b6c184f9372bbc9a6014135afedfb:/cookbooks/tilecache/recipes/default.rb diff --git a/cookbooks/tilecache/recipes/default.rb b/cookbooks/tilecache/recipes/default.rb index 9357ee6d7..b6db40164 100644 --- a/cookbooks/tilecache/recipes/default.rb +++ b/cookbooks/tilecache/recipes/default.rb @@ -23,6 +23,8 @@ include_recipe "ssl" include_recipe "squid" include_recipe "nginx" +package "xz-utils" + tilecaches = search(:node, "roles:tilecache").sort_by { |n| n[:hostname] } tilerenders = search(:node, "roles:tile").sort_by { |n| n[:hostname] } @@ -44,7 +46,16 @@ tilecaches.each do |cache| dest "fw" proto "udp" dest_ports "3130" - source_ports "1024:" + source_ports "3130" + end + firewall_rule "accept-squid-icp-reply" do + action :accept + family "inet" + source "fw" + dest "net:#{address}" + proto "udp" + dest_ports "3130" + source_ports "3130" end end end @@ -62,11 +73,10 @@ template "/etc/logrotate.d/squid" do end nginx_site "default" do - action :delete + action [ :delete ] end nginx_site "tile-ssl" do - action :create - source "nginx_tile_ssl.conf.erb" + template "nginx_tile_ssl.conf.erb" end