nginx代理做好了,缓存也配置好了,但是发现css、js、jpg这些静态文件统统都cached成功。但是偏偏页面文件依旧到源服务器取。
1. nginx不缓存原因
默认情况下,nginx是否缓存是由nginx缓存服务器与源服务器共同决定的, 缓存服务器需要严格遵守源服务器响应的header来决定是否缓存以及缓存的时常。header主要有如下:
Cache-control:no-cache、no-store
如果出现这两值,nginx缓存服务器是绝对不会缓存的
Expires:1980-01-01
如果出现日期比当前时间早,也不会缓存。
2. 解决不缓存方案
2.1 方法一:
修改程序或者源服务器web程序响应的header
2.2 方法二:
nginx代理直接加上如下一句:
proxy_ignore_headers X-Accel-Expires Expires Cache-Control Set-Cookie;
3.缓存优先级
3.1架构图
client端 <------------------> nginx cache <------------------>源服务器
经过大量测试发现:nginx的过期顺序是有一个优先级的。下面首先说明各个影响缓存过期的因素:
(1)inactive:在proxy_cache_path配置项中进行配置,说明某个缓存在inactive指定的时间内如果不访问,将会从缓存中删除。
(2)源服务器php页面中生成的响应头中的Expires,生成语句为:
header("Expires: Fri, 07 Sep 2013 08:05:18 GMT");
(3)源服务器php页面生成的max-age,生成语句为:
header("Cache-Control: max-age=60");
(4)nginx的配置项 proxy_cache_valid:配置nginx cache中的缓存文件的缓存时间,如果配置项为:proxy_cache_valid 200 304 2m;说明对于状态为200和304的缓存文件的缓存时间是2分钟,两分钟之后再访问该缓存文件时,文件会过期,从而去源服务器重新取数据。
3.2其次对需要注意的一点:源服务器的expires和nginx cache的expires配置项的冲突进行说明,场景如下
(1)源服务器端有php文件ta1.php内容如下:
<?phpheader("Expires: Fri, 07 Sep 2013 08:05:18 GMT");header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");header("Cache-Control: max-age=60");echo "ta1";?>
(2)在nginx cache服务器端的配置信息如下:
…….proxy_cache_path /data0/proxy_cache_dir levels=1:2 keys_zone=cache_one:200m inactive=5s max_size=30g;…….. location ~ .*/.(php|jsp|cgi)${ proxy_read_timeout 10s; proxy_connect_timeout 10s; proxy_set_header Host $host; proxy_cache_use_stale updating; proxy_cache_key $host$uri$is_args$args; proxy_cache cache_one; #proxy_ignore_headers "Cache-Control"; #proxy_hide_header "Cache-Control"; #proxy_ignore_headers "Expires"; #proxy_hide_header "Expires"; proxy_hide_header "Set-Cookie"; proxy_ignore_headers "Set-Cookie"; #add_header Cache-Control max-age=60; add_header X-Cache '$upstream_cache_status from $server_addr'; proxy_cache_valid 200 304 2m; #proxy_cache_valid any 0m; proxy_pass http://backend_server; expires 30s;}………….
新闻热点
疑难解答