nginx缓存优先级

nginx缓存优先级

nignx cache 本地区缓存时间

http response 头缓存时间

  1. inactive=5m 值nginx本地缓存时间如果5分钟内没有访问,就删除缓存文件

  2. proxy_cache_valid 200 302 1h;#200和302状态码保存本地,1小时

  3. 如果nignx发现后端服务器response头中设置了过期时间,nginx本地缓存,则以后端服务器response头中设置的优先

  4. 如果要屏蔽后端服务器response头中设置参数,可以 expires 1d 来设置缓存。

你可能感兴趣的:(nginx缓存优先级)