3

S3 に static を保存し、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 return 415 Unsupported Media Type. どうしたの?

4

1 に答える 1

0

url: t/m/l の各部分で location ディレクティブを使用することができます。

location ( ~ ^/t/ ) {
    set $w 182;
    set $h 114;
    root /;
    image_filter crop $w $h;
}
于 2013-05-24T11:39:54.947 に答える