X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/ce4d234ef22e628fe216f93a552f7f31dcb0897d..7aa758eedfd84af0109dd7849ccb2ad54da29149:/cookbooks/tilecache/templates/default/nginx_tile.conf.erb?ds=sidebyside diff --git a/cookbooks/tilecache/templates/default/nginx_tile.conf.erb b/cookbooks/tilecache/templates/default/nginx_tile.conf.erb index d5207f465..c8cace7a8 100644 --- a/cookbooks/tilecache/templates/default/nginx_tile.conf.erb +++ b/cookbooks/tilecache/templates/default/nginx_tile.conf.erb @@ -3,6 +3,17 @@ upstream tile_cache_backend { server 127.0.0.1; + # Add the other caches to relieve pressure if local squid failing + # Balancer: round-robin +<% @caches.each do |cache| -%> +<% if cache[:hostname] != node[:hostname] -%> + # Server <%= cache[:hostname] %> +<% cache.ipaddresses(:family => :inet, :role => :external).sort.each do |address| -%> + server <%= address %> backup; +<% end -%> +<% end -%> +<% end -%> + keepalive 256; }