Welcome! Log In Create A New Profile

Advanced

Re: Custom forced 503 page does not work

July 31, 2013 02:51AM
Hi,

Nginx reads from top to bottom, just like you. In your example, you are returning 503 (an action) before instructing to use your custom error page. Just need to put your instructions first, then your actions...like so:

error_page 500 502 503 504 /50x.html;
location = /50x.html { root /usr/share/nginx/html; }

location / { return 503; }


-Skyler
Subject Author Posted

Custom forced 503 page does not work

Dennis Jacobfeuerborn July 25, 2013 09:06AM

Re: Custom forced 503 page does not work

skchopperguy July 31, 2013 02:51AM

Re: Custom forced 503 page does not work

Maxim Dounin July 31, 2013 04:18AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 180
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready