nginx配置不缓存资源

方法1

conf 复制代码
        location / {
            index  index.html index.htm;
            add_header Cache-Control no-cache,no-store;
            try_files $uri $uri/ /index.html;
            #include mime.types;
            if ($request_filename ~* .*\.(htm|html)$) 
            {
              add_header Cache-Control "private, no-store, no-cache, must-revalidate, proxy-revalidate";
            }
        }

方法2

conf 复制代码
        location / {
            index  index.html index.htm;
            add_header Cache-Control no-cache,no-store;
            try_files $uri $uri/ /index.html;
            #include mime.types;
            #if ($request_filename ~* .*\.(htm|html)$) 
            #{
            #  add_header Cache-Control "private, no-store, no-cache, must-revalidate, proxy-revalidate";
           # }
        }
       location = /index.html {
            #add_header Cache-Control "no-cache, no-store, must-revalidate";
            add_header Cache-Control "private, no-store, no-cache, must-revalidate, proxy-revalidate";
            add_header Pragma "no-cache";
            add_header Expires "0";
    }
相关推荐
weisian1512 小时前
Redis篇--常见问题篇3--缓存击穿(数据查询上锁,异步操作,熔断降级,三种缓存问题综合优化策略)
数据库·redis·缓存
袁震2 小时前
Android-Glide缓存机制
android·缓存·移动开发·glide
BUG研究员_2 小时前
LoadBalancer负载均衡和Nginx负载均衡区别理解
nginx·rpc·负载均衡
见欢.3 小时前
Nginx解析漏洞靶场通关(nginx_parsing&CVE-2013-454)
nginx
HEU_firejef4 小时前
redis——布隆过滤器
数据库·redis·缓存
2401_871151078 小时前
12月第十九讲:Redis应用Redis相关解决方案
数据库·redis·缓存
2401_850410838 小时前
LVS简介
运维·nginx·tomcat·lvs
Pafey13 小时前
git 删除鉴权缓存及账号信息
git·缓存
Say-hai14 小时前
nginx-rtmp服务器搭建
服务器·nginx·音视频
weisian15114 小时前
Redis篇--常见问题篇2--缓存雪崩(过期时间分散,缓存预热,多级缓存)
数据库·redis·缓存