缓存 – 在NGINX`position`指令中`expires -1’是什么意思?

前端之家收集整理的这篇文章主要介绍了缓存 – 在NGINX`position`指令中`expires -1’是什么意思?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

鉴于下面的示例位置示例,-1表示过期是什么意思?这是否意味着“永不过期”或“永不缓存”?

# cache.appcache,your document html and data
location ~* \.(?:manifest|appcache|html?|xml|json)${
  expires -1;
  access_log logs/static.log;
}

https://github.com/h5bp/server-configs-nginx/blob/master/h5bp/location/expires.conf

最佳答案
根据nginx manual,该指令将Expires和Cache-Control HTTP标头添加到响应中.

值-1表示这些标头设置为:

Expires: current time minus 1 second

Cache-Control: no-cache

总而言之,它指示浏览器不要缓存文档.

原文链接:https://www.f2er.com/nginx/434603.html

猜你在找的Nginx相关文章