]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/tilecache/templates/default/nginx_tile.conf.erb
tilecache: fallback to other caches if local cache unresponsive
[chef.git] / cookbooks / tilecache / templates / default / nginx_tile.conf.erb
index d5207f465559196d70454a27abb6859ec1699808..c8cace7a849590d58e57e608af1b906e6dafa1c7 100644 (file)
@@ -3,6 +3,17 @@
 upstream tile_cache_backend {
     server 127.0.0.1;
 
 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;
 }
 
     keepalive 256;
 }