0 votes
in NGINX by
Is It Possible To Replace Nginx Errors Like 502 Error With 503?

1 Answer

0 votes
by

502= Bad gateway

503= Server overloaded

Yes, it is possible but you to ensure that fastcgi_intercept_errors is set to ON, and use the error page directive.

Location /

{

fastcgi_pass 127.0.01:9001;

fastcgi_intercept_errors on;

error_page 502 =503/error_page.html;

#…

}

Related questions

0 votes
asked Aug 18, 2022 in SEO by Robin
0 votes
asked Mar 8, 2023 in Azure Data Factory by Robindeniel
0 votes
asked Oct 25, 2019 in NGINX by rajeshsharma
...