try_files and filter modules
Valentin V. Bartenev
ne at vbart.ru
Mon Feb 13 13:37:45 UTC 2012
On Monday 13 February 2012 16:46:55 Reinis Rozitis wrote:
> Hello,
> is there a reason (or workaround) why try_files doesn't work with filter
> modules (in my case its image_filter)?
>
>
> For example:
>
> location ~ (.*)/small_(.*) {
> try_files $uri $1/medium_$2 $1/large_$2;
> image_filter crop 175 175;
> }
>
> The crop filter is never applied.
[...]
Probably, because $uri and $1/medium_$2 doesn't exist or
smaller than your crop.
location ~ (.*)/small_(.*) {
try_files $uri $1/medium_$2 $1/large_$2 =404;
image_filter crop 175 175;
}
wbr, Valentin V. Bartenev
More information about the nginx
mailing list