Welcome! Log In Create A New Profile

Advanced

Re: Rewriting for revisioned URLs

May 21, 2009 12:14PM
On Thu, May 21, 2009 at 11:09 PM, Edho P Arief <edhoprima@gmail.com> wrote:
> On Thu, May 21, 2009 at 10:50 PM, Brian Kirkbride
> <brian.kirkbride@deeperbydesign.com> wrote:
>> Hi all,
>>
>> I'm trying to switch us from LigHTTPD to NginX and have run into some
>> issues.  Any help is much appreciated.
>>
>> We use revisioned URLs to allow for far-future caching of resources (e.g.
>> http://example.com/r1234567890/site.css) and are having trouble getting this
>> to work.
>>
>> Basically we need to strip /r1234567890 from the front of the URI and set
>> expires to max, then check for a file and fallback to FastCGI.
>>
>> I've tried something like:
>>
>>
>> location ~ ^/r[0-9]+ {
>>    if ( $uri ~ ^/r([0-9]+)(/.*)$ ) {
>>        set $rev $1;
> c>        set $realuri $2;
>>    }
>>    expires max;
>>    try_files $root/$realuri @catalyst;
>
> try_files $realuri @catalyst;
>
> ?
>

also iirc you can regex the location

location ~ ^/r([0-9]+)(/.*)$ {
set $rev $1;
set $realuri $2;
expires max;
try_files $realuri @catalyst;
}

(or something like that)

>> }
>>
>>
>> with no luck.  Any ideas?
>>
>> Thanks in advance!
>>
>>
>
>
>
> --
> O< ascii ribbon campaign - stop html mail - www.asciiribbon.org
>



--
O< ascii ribbon campaign - stop html mail - www.asciiribbon.org
Subject Author Posted

Rewriting for revisioned URLs

Brian Kirkbride May 21, 2009 11:50AM

Re: Rewriting for revisioned URLs

edogawaconan May 21, 2009 12:09PM

Re: Rewriting for revisioned URLs

edogawaconan May 21, 2009 12:14PM

Re: Rewriting for revisioned URLs

Jauder Ho May 21, 2009 01:00PM

Re: Rewriting for revisioned URLs

Igor Sysoev May 21, 2009 01:02PM

Re: Rewriting for revisioned URLs

Brian Kirkbride May 21, 2009 02:02PM

Re: Rewriting for revisioned URLs

Igor Sysoev May 21, 2009 02:07PM

Re: Rewriting for revisioned URLs

Jauder Ho May 21, 2009 02:38PM

Re: Rewriting for revisioned URLs

Brian Kirkbride May 21, 2009 02:52PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

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