Welcome! Log In Create A New Profile

Advanced

Re: URL encoded URLs and regex locations

May 07, 2009 12:47AM
On Tue, May 05, 2009 at 12:14:23PM -0700, Joe Williams wrote:

> I found this post
> (http://thread.gmane.org/gmane.comp.web.nginx.english/9526) regarding
> URL encoding, example from the email (e.g. /foo/bar%2Fbaz ->
> /foo/bar/baz). I have a regex location (location ~ /my_url*) for a
> proxy_pass, adding the '/' to the end of the upstream server gives me an
> error:
>
> >"proxy_pass" may not have URI part in location given by regular
> >expression, or inside named location, or inside the "if" statement, or
> >inside the "limit_except" block
>
> Is there any way around this, I need regex in my location and URL
> encoded URLs to work properly.

You should omit the "/" (URI part):

location ~ ^/my_url {
proxy_pass http://backend;
}

Then a client request URI will bed sent to the backend unchanged.


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

URL encoded URLs and regex locations

Joe Williams May 05, 2009 03:14PM

Re: URL encoded URLs and regex locations

Joe Williams May 06, 2009 04:33PM

Re: URL encoded URLs and regex locations

Igor Sysoev May 07, 2009 12:47AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 141
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 500 on July 15, 2024
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready