Welcome! Log In Create A New Profile

Advanced

Re: How to catch a request that has a given word in url?

August 09, 2010 06:12AM
On Mon, Aug 09, 2010 at 11:59:02AM +0200, Fernando Perez wrote:

> I'll use actual values:
>
> A public request looks like:
>
> /uploads/2009/product.jpg
>
>
> An a restricted request looks like:
>
> /uploads/2009/restricted/product.mp4
>
>
> So I have:
>
> location ~ /restricted/ {
> internal;
> root ...;
> }
>
> location ^~ /uploads/ {
> root ...;
> }
>
>
> Is it my /uploads/ location which fits maybe better the request and
> confuses nginx?

"^~" disables regex locaitons testing, so you need something liek this:

location ~ /restricted/ {
internal;
root ...;
}

location /uploads/ {
root ...;
}


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

_______________________________________________
nginx mailing list
nginx@nginx.org
http://nginx.org/mailman/listinfo/nginx
Subject Author Posted

How to catch a request that has a given word in url?

Fernando Perez August 09, 2010 05:22AM

Re: How to catch a request that has a given word in url?

Igor Sysoev August 09, 2010 05:24AM

Re: How to catch a request that has a given word in url?

Fernando Perez August 09, 2010 05:58AM

Re: How to catch a request that has a given word in url?

Igor Sysoev August 09, 2010 06:00AM

Re: How to catch a request that has a given word in url?

Fernando Perez August 09, 2010 06:02AM

Re: How to catch a request that has a given word in url?

Igor Sysoev August 09, 2010 06:12AM

Re: How to catch a request that has a given word in url?

Fernando Perez August 09, 2010 06:24AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

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