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";
    }
相关推荐
PGCCC1 小时前
【PGCCC】Postgresql 缓存替换算法
数据库·缓存·postgresql
苹果醋310 小时前
Redis | 第3章 对象《Redis设计与实现》
java·运维·spring boot·mysql·nginx
一直要努力哦11 小时前
Redis的高可用性
数据库·redis·缓存
冷瞳12 小时前
Redis的特性
数据库·redis·缓存
门牙咬脆骨12 小时前
【Redis】持久化机制RDB与AOF
数据库·redis·缓存
yangshuo128116 小时前
Docker-Compose 快速部署安装 Nginx 或其他应用
运维·nginx·docker
stormsha17 小时前
在 Sanic 框架中实现高效内存缓存的多种方法
spring boot·spring·缓存·sanic
.Ayang17 小时前
【vulhub】nginx解析漏洞(nginx_parsing_vulnerability)
计算机网络·nginx·安全·web安全·网络安全·系统安全·网络攻击模型
枪兵自古幸运e19 小时前
redis的缓存问题
数据库·redis·缓存