NGINX 缓存默认是不开启的,也就是说,NGINX 作为反向代理服务器时,会将所有的客户端请求直接打到服务端。如果想使用 NGINX 缓存,可以通过 proxy_cache_path 配置项进行设置
1.nginx怎么关闭缓存
location / {
#如果expires 和 add_header 同时开启的情况下,则add_header优于expires生效
#Cache-Control比Expires可以控制的多一些, 而且Cache-Control会重写Expires的规则
#设置禁止浏览器缓存,每次都从服务器请求
add_header Cache-Control no-cache;
add_header Cache-Control private;
#设置缓存上面定义的后缀文件缓存到浏览器的生存时间
expires -1s;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|js|css)$ {
#禁止缓存,每次都从服务器请求
add_header Cache-Control no-store;
}
2.expires off 默认设置 nginx不缓存 不代表浏览器不缓存 浏览器还可以缓存 默认使用浏览器缓存机制
expires off;
3.expires epoch 代表不设置缓存 不设置缓存 提醒浏览器 不设置缓存
expires epoch;
4.expires max 缓存 永不过期
5.
Location / {
#缓存10s
expires 10s;
}
expires的使用例子
1,对于图片,通常过期时间可以设置为一个月文章来源:https://www.toymoban.com/news/detail-419149.html
location ~ \.(gif|jpg|jpeg|png|bmp|ico)$ { expires 30d; }
2,对js/css,通常过期时间设置为1周文章来源地址https://www.toymoban.com/news/detail-419149.html
location ~* \.(js|css)$ { expires 7d; }
到了这里,关于nginx缓存关闭的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!