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

try_files wildcards

$
0
0
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)

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? Are there better and easier ways to solve my problem?

--
Regards, Ian Babrou
http://bobrik.name http://twitter.com/ibobrik skype:i.babrou
_______________________________________________
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



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>