作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将静态存储在 S3 上并使用 nginx作为前端。对于从 S3 获取,我使用这种结构:
location / {
try_files $uri @s3;
}
location @s3 {
root /var/www/static.dev;
proxy_pass https://bucket.s3-eu-west-1.amazonaws.com;
proxy_store off; # for test purposes
proxy_store_access all:rw;
proxy_temp_path /dev/shm;
}
这项工作!但是我想生成拇指并使用这个位置:
if ( $uri ~ ^/t/ ) {
set $w 182;
set $h 114;
}
if ( $uri ~ ^/m/ ) {
set $w 640;
set $h 1280;
}
if ( $uri ~ ^/l/ ) {
set $w 1024;
set $h 2048;
}
location ~ ^/(?:t|m|l)/(.*\.(?:jpg|gif|png))$ {
rewrite ^/[t|m|l]+/(.*)$ /$1;
image_filter crop $w $h;
}
但这不起作用,nginx 返回 415 Unsupported Media Type
。怎么了?
最佳答案
您可能喜欢在 url 的每个部分使用位置指令:t/m/l。
location ( ~ ^/t/ ) {
set $w 182;
set $h 114;
root /;
image_filter crop $w $h;
}
关于static - Nginx image_filter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12986980/
我将静态存储在 S3 上并使用 nginx作为前端。对于从 S3 获取,我使用这种结构: location / { try_files $uri @s3; } location @s3 {
我是一名优秀的程序员,十分优秀!