]> git.openstreetmap.org Git - chef.git/commitdiff
tilecache: allow nginx to fallback to other caches
authorGrant Slater <git@firefishy.com>
Mon, 25 Nov 2019 22:19:11 +0000 (22:19 +0000)
committerGrant Slater <git@firefishy.com>
Mon, 25 Nov 2019 22:19:34 +0000 (22:19 +0000)
cookbooks/tilecache/templates/default/nginx_tile.conf.erb

index eb7cb6771bd45f9d4d2ab285c9101f1381b0e5da..76b3f26f5f5a6c9dd01a0b495560d4b231c30d64 100644 (file)
@@ -1,18 +1,15 @@
 # DO NOT EDIT - This file is being maintained by Chef
 
 upstream tile_cache_backend {
-  server 127.0.0.1;
-  server 127.0.0.2;
-  server 127.0.0.3;
+  server 127.0.0.1:80;
+  server 127.0.0.2:80;
 
   # Add the other caches to relieve pressure if local squid failing
   # Balancer: round-robin
 <% @caches.each do |cache| -%>
 <% if cache[:hostname] != node[:hostname] -%>
-<% if node[:tilecache][:tile_siblings].include? cache[:fqdn] -%>
 <% cache.ipaddresses(:family => :inet, :role => :external).sort.each do |address| -%>
-  server <%= address %> backup; # Server <%= cache[:hostname] %>
-<% end -%>
+  server <%= address %>:80 backup; # Server <%= cache[:hostname] %>
 <% end -%>
 <% end -%>
 <% end -%>