nginx 配置指定文件不做缓存
```
#缓存location 增加配置.
if ($request_uri ~* "filename") {
add_header Cache_Control "private, no-store, must-revalidate, proxy-revalidate";
}
```
```
#缓存location 增加配置.
if ($request_uri ~* "filename") {
add_header Cache_Control "private, no-store, must-revalidate, proxy-revalidate";
}
```