expires max
表示最长过期时间,即一直缓存。
expires -1
表示立即过期,即不缓存。
按如下配置,使test
整个目录可以被客户端浏览器缓存,但是index.html
文件不缓存,使版本重新构建后,访问index文件能实时刷新,适用于生成了MD5的h5游戏。
Nginx配置实例如下
server {
listen 8080;
server_name localhost;
// 缓存test目录
location / {
root /usr/share/nginx/test;
index index.html index.html;
expires max;
etag off;
if_modified_since off;
}
// 但test目录下的index.html不缓存
location = /index.html {
root /usr/share/nginx/test;
expires -1;
}
}