"fallback" response code

Igor Sysoev is at rambler-co.ru
Tue Jun 9 12:14:29 MSD 2009


On Tue, Jun 09, 2009 at 10:12:43AM +0200, andan andan wrote:

> 2009/6/9 Phillip Oldham <phill at theactivitypeople.co.uk>:
> > I'm using a custom perl script in the following way:
> >
> > location ~ ^/resources {
> >     error_page 404 @fallback;
> > }
> >
> > location @fallback {
> >     perl MyModule::handler;
> > }
> >
> > The fallback works as expected, apart from that it always returns a 404 with
> > content, rather than a 200.
> >
> > Is there any way to force a 200 when I'm sending content back to the browser
> > from either the Perl script or from the @fallback block?
> 
> According with documentation:
> 
> Furthermore, it is possible to change the code of answer to another,
> for example:
> error_page 404 =200 /.empty.gif;
> 
> I suppose that this works well with @fallback

Or

error_page 404 = @fallback;

then it will be used the MyModule::handler's response code.


-- 
Igor Sysoev
http://sysoev.ru/en/





More information about the nginx mailing list