Quantcast
Channel: Nginx Forum
Viewing all articles
Browse latest Browse all 53287

Re: try_files wildcards

$
0
0
Hello!

On Fri, Feb 08, 2013 at 01:56:59PM +0400, ivan babrou wrote:

> Hello!
>
> I have use-case where i need to check file presence in different
> directories.
>
> For example, I have static file test.css with versions in different
> revisions:
>
> /v1/static/test.css
> /v1/static/test_v001.css (same as test.css in this dir)
> /v2/static/test.css
> /v2/static/test_v002.css (same as test.css in this dir)
>
> In this case I want to make all files accessible by urls:
>
> /static/test.css
> /static/test_v001.css (test.css version 1)
> /static/test_v002.css (test.css version 2)
> /static/test_v000.css (test.css in the last version)

Which test.css you expect to be returned for /static/test.css?

> Obvious solution that I see:
>
> location / {
> root /var/www/
> try_files /*/$uri /v2/$uri =404;
> }
>
> This way I specify latest version as v2, but here comes the problem:
> try_files does not support wildcards.
>
> It is adequate to have support for wildcards (*) in try_files? Will you
> accept patch?

I don't think so.

> Are there better and easier ways to solve my problem?

An obvious solution would be to keep links on a file system.

--
Maxim Dounin
http://nginx.com/support.html

_______________________________________________
nginx-devel mailing list
nginx-devel@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx-devel

Viewing all articles
Browse latest Browse all 53287

Trending Articles