From ee2e8f3fce8266dcc8985c79ec0bf1f7ee34b0bb Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Wed, 24 Jun 2026 23:46:38 +0100 Subject: [PATCH] imagery: remove incorrect http_503 --- .../templates/default/nginx_imagery_layer_fragment.conf.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cookbooks/imagery/templates/default/nginx_imagery_layer_fragment.conf.erb b/cookbooks/imagery/templates/default/nginx_imagery_layer_fragment.conf.erb index 1a67b0995..426685d69 100644 --- a/cookbooks/imagery/templates/default/nginx_imagery_layer_fragment.conf.erb +++ b/cookbooks/imagery/templates/default/nginx_imagery_layer_fragment.conf.erb @@ -86,7 +86,7 @@ location @<%= @site %>_<%= @layer %>_backend { fastcgi_cache_lock_age 180s; # Serve stale cache on errors or if updating - fastcgi_cache_use_stale error timeout updating http_500 http_503 http_504; + fastcgi_cache_use_stale error timeout updating http_500 http_503; # If in cache as stale, serve stale and update in background fastcgi_cache_background_update on; # Enable revalidation using If-Modified-Since and If-None-Match for stale items @@ -96,7 +96,7 @@ location @<%= @site %>_<%= @layer %>_backend { fastcgi_catch_stderr "Image handling error"; - fastcgi_next_upstream error timeout invalid_header http_500 http_503 http_504; + fastcgi_next_upstream error timeout invalid_header http_500 http_503; fastcgi_next_upstream_tries 8; <% end -%> gzip off; -- 2.47.3