欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Nginx静态文件缓存过期配置

程序员文章站 2022-03-23 16:56:56
...

location /web {

    add_header Cache-Control no-cache;

    add_header Cache-Control private;

    expires 0s;

    alias /usr/share/nginx/html/web;

}