Welcome! Log In Create A New Profile

Advanced

Re: Did I got try_files wrong? and bad gateway 502

July 08, 2009 09:33AM
On Mon, Jul 06, 2009 at 05:37:27AM +0200, Tobias Lott wrote:

> Hey Folks
>
> I got a problem understanding try_files I guess.
>
> Got this as configuration :
>
> location = / { rewrite ^(.*)$ /shop/ redirect; }
>
> location / {
> proxy_pass http://backend:10060;
> proxy_set_header X-Real-IP $remote_addr;
> proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
> proxy_set_header Host $http_host;
> proxy_redirect off;
> proxy_connect_timeout 90;
> proxy_send_timeout 90;
> proxy_read_timeout 120;
> }
>
>
> Problem is that I cant "catch" all 404 and rewrite it
> to /shop/index.php but with "if" (which I shouldn't use cause of
> possible performance issues, Igor mentioned I think.)
>
> Doesn't work:
> try_files $uri $uri/ /shop/index.php;
> error_page 404 /shop/index.php;
>
> Works:
> if (!-f $request_filename) { rewrite ^(.*)$ /shop/index.php
> redirect; }

Have you tried this:

location = / { rewrite ^ /shop/ redirect; }

location / {
try_files $uri $uri/ /shop/index.php;

proxy_pass http://backend:10060;
...
}


--
Igor Sysoev
http://sysoev.ru/en/
Subject Author Posted

Did I got try_files wrong? and bad gateway 502

Tobias Lott July 05, 2009 11:37PM

Re: Did I got try_files wrong? and bad gateway 502

mike July 06, 2009 12:39AM

Re: Did I got try_files wrong? and bad gateway 502

Tobias Lott July 06, 2009 06:03AM

Re: Did I got try_files wrong? and bad gateway 502

mike July 06, 2009 04:29PM

Re: Did I got try_files wrong? and bad gateway 502

Tobias Lott July 06, 2009 05:52PM

Re: Did I got try_files wrong? and bad gateway 502

merlin corey July 06, 2009 08:53PM

Re: Did I got try_files wrong? and bad gateway 502

Maxim Dounin July 06, 2009 10:06PM

Re: Did I got try_files wrong? and bad gateway 502

Tobias Lott July 07, 2009 05:52PM

Re: Did I got try_files wrong? and bad gateway 502

Igor Sysoev July 08, 2009 09:33AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 205
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