Welcome! Log In Create A New Profile

Advanced

Re: Custom forced 503 page does not work

Maxim Dounin
July 31, 2013 04:18AM
Hello!

On Wed, Jul 31, 2013 at 02:51:43AM -0400, skchopperguy wrote:

> 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; }

No, config directives order doesn't matter in general. There are
some exceptions (like rewrite module directives order, or order of
locations with regular expressions), but the configuration in
question is fine and has no problems with directives order.

Most likely, the problem was somewhere else (e.g. conflicting
server{} block in the configuration, or original message author
just forgot to reload the configuration after changes).

--
Maxim Dounin
http://nginx.org/en/donation.html

_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
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: 139
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