避免敏感数据的缓存
Prevent caching of sensitive data
尽管这个策略应该由应用本身实现,但是,很多时候还是需要反向代理服务进行处理。
不要缓存或持久化敏感数据
由于浏览器对缓存HTTPS
内容有不同的默认行为,包含敏感信息的页面应该包含Cache-Control
头,以确保内容不被缓存。
实现方式
- 在响应中添加防缓存头,例如:
Cache-Control: no-cache, no-store
和Expires: 0
- 为了兼容多种浏览器实现,建议响应头配置如下:
Cache-Control: no-cache, no-store, private, must-revalidate, max-age=0, no-transform Pragma: no-cache Expires: 0
nginx
配置样例
基于location
上下文
```nginx configuration location /api {
expires 0; add_header Pragma "no-cache"; add_header Cache-Control "no-cache, no-store, private, must-revalidate, max-age=0, no-transform";
} ```