nginx 文件图片缓存设置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 文件图片缓存设置相关的知识,希望对你有一定的参考价值。
server {
location ~* ^.+.(ogg|ogv|svg|svgz|eot|otf|woff|mp4|ttf|rss|atom|jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf|html|flv|swf)$ {
expires 30d;
access_log off;
}
location ~ .*.(js|css|html)?$ {
expires 10d;
access_log off;
}
}
以上是关于nginx 文件图片缓存设置的主要内容,如果未能解决你的问题,请参考以下文章