Skip to content

Instantly share code, notes, and snippets.

@taddev
Last active September 8, 2023 00:41
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save taddev/6212449 to your computer and use it in GitHub Desktop.
Save taddev/6212449 to your computer and use it in GitHub Desktop.
Nginx Reverse Proxy with custom error if upstream proxy is not working.
server {
listen 80;
listen [::]:80 default server ipv6only=on;
location / {
proxy_intercept_errors on;
proxy_pass http://localhost:9000;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www/errors;
}
}
@thisis2394
Copy link

Thanks for sharing

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment