<div dir="ltr">I'm trying to get nginx to forward to my S3 bucket when my web app k8 pod is down. So I was hoping the below config would, in the case of 50x error or no response, forward request to bucket, then if the document doesn't exist (very likely for first 50x request) - it would then return sitedown.html - this would then request some css files which would fail with same 50x then try on S3 and success.<br><br>However it just returns 404 when my application pod is down (if I remove  proxy_intercept_errors on; error_page 403 404 =200 I get the S3 404 message as expected).<br><br>I want to avoid hosting the website down error page on the nginx server.<br><br>Below is my config (everything else config wise is as in the FROM nginxinc/nginx-unprivileged:1.21 docker image)<br><br><font face="monospace">server {<br>    listen       8080 default_server;<br>    server_name  _;<br>    port_in_redirect off;<br>    client_max_body_size 51M;<br>    server_tokens off;<br><br>    error_page 501 502 503 504 = @holding_page_proxy;<br><br>    location @holding_page_proxy {<br>        proxy_pass <a href="https://tca-holding-pages-permits-dev.s3.eu-west-2.amazonaws.com">https://tca-holding-pages-permits-dev.s3.eu-west-2.amazonaws.com</a>;<br>        proxy_intercept_errors on;<br>        error_page 403 404 =200 <a href="https://mybucket.s3.eu-west-2.amazonaws.com/sitedown.html">https://mybucket.s3.eu-west-2.amazonaws.com/sitedown.html</a>;<br>    }<br><br>    location / {<br>          proxy_read_timeout 180s;<br>          proxy_set_header X-Real-IP  $http_x_real_ip;<br>          proxy_set_header X-Forwarded-Host "";<br>          proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;<br>          proxy_set_header Host $http_host;<br>          proxy_next_upstream error timeout invalid_header http_502 http_503 http_504 http_404;<br>          proxy_http_version 1.1;<br>          proxy_pass <a href="http://application:8080/">http://application:8080/</a>;<br>    }<br><br>    # Deny access to the Spring Boot actuator.<br>    location /actuator {<br>        deny  all;<br>    }<br><br>    # probe for kubernetes checks<br>    location = /probe.html {<br>        root   /usr/share/nginx/html;<br>    }<br>}</font><br></div>