イメージ、css、js などの静的ファイルをキャッシュするように nginx をセットアップしようとしています。
これは私のconfです。
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
location / {
root /var/www/site;
index index.html index.htm;
}
location ~* \.(?:ico|css|js|gif|jpe?g|png)$ {
expires max;
add_header Pragma public;
add_header Cache-Control "public, must-revalidate, proxy-revalidate";
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
これを使用しようとすると、すべてのファイルで 404 が発生します。場所を削除すると ~*... すべてのファイルを完全に取得できます。にファイルがあります/var/www/site/images/*/*.jpg
。ここで何が欠けていますか?