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";
    }
相关推荐
RoboWizard16 小时前
PCIe 5.0 SSD有无独立缓存对性能影响大吗?Kingston FURY Renegade G5!
人工智能·缓存·电脑·金士顿
l***0618 小时前
Ubuntu 系统下安装 Nginx
数据库·nginx·ubuntu
n***i951 天前
后端在分布式缓存中的一致性哈希
分布式·缓存·哈希算法
阿星智力囊1 天前
Thinkphp6+nginx环境报错信息不显示,接口直接报500和CORS跨域(错误的引导方向),真坑啊
运维·nginx·php·thinkphp6
tanxiaomi1 天前
Redis相关面试题
数据库·redis·缓存
L***86531 天前
Failed to restart nginx.service Unit nginx.service not found
运维·nginx
optimistic_chen1 天前
【Redis 系列】Redis详解
linux·数据库·redis·缓存·xsheel
r***11331 天前
Redis--模糊查询--方法实例
数据库·redis·缓存
·云扬·1 天前
Redis性能测试实战:掌握redis-benchmark工具用法与集群压测技巧
数据库·redis·缓存
2401_837088501 天前
秒杀优化—基于 Redis 完成秒杀下单
数据库·redis·缓存