HttpSecureLinkModule timestamp inside uri

Valentin V. Bartenev ne at vbart.ru
Fri Apr 6 16:03:19 UTC 2012


On Friday 06 April 2012 17:25:53 nenad wrote:
> thank you, that worked!
> 
> can you also say me how i can point to correct root without /t{time},
> now it try to open the file in a folder with timestamp in.
> 
> www.example.aaa/260/7/4/3/4255/4543535/t1331894408/1234_x.jpg?a=1234567888
> 
> means it try to open it in:
> /media/photos/260/7/4/3/4255/4543535/t1331894408/1234_x.jpg instead
> /srv/media/260/7/4/3/4255/4543535/1234_x.jpg
> 

http://nginx.org/r/alias


    location ~ ^(.+)/t(?P<t>\d+)(/\d+_x\.(?:jpe?g|gif|png))$ {

        secure_link $arg_a,$t;
        secure_link_md5 mysecretword$uri$t;

        alias /srv/media$1$3;
        ...
    }


 wbr, Valentin V. Bartenev



More information about the nginx mailing list