我们的网站前端有角度需要为搜索机器人和其他应用程序(如Skype)进行渲染,可以预览页面。 我们使用nginx,它设置用于代理从机器人到预渲染的请求,这些请求安装在我们的服务器上。但在这种情况下,预渲染其中一个页面大约需要15秒。
那么,问题是预渲染的设置缓存结果如何?
我已经尝试过了: 将缓存设置放入frontend.conf
proxy_cache_path /var/lib/nginx/cache levels=1:2 keys_zone=STATIC:10m max_size=1G;
proxy_temp_path /var/lib/nginx/proxy 1 2;
server {
location @prerender {
.....................
proxy_cache STATIC;
proxy_cache_valid 1d;
if ($prerender = 1) {
rewrite .* /$scheme://$host:$server_port$request_uri? break;
proxy_pass http://10.0.2.2:3000;
}}}
其中10.0.2.2服务器有工作prerender.io
我尝试通过另一个nginx执行此操作,其设置类似于cache-proxy。在frotnend.conf中,我评论所有缓存设置并将它们放入其他nginx中。但我仍然遇到同样的问题,页面渲染需要15秒,而nginx不会进行任何缓存。
UDP。
我尝试了另一种nginx配置,但仍有问题。 架构看起来像
web-browser(http://myapp.local) > |AppServer(frontend) is a virtual Server|(proxy_pass) > to > |nginx with proxy cache| > to > |prerender|
代理cache.conf
proxy_cache_path /var/lib/nginx/cache levels=1:2 keys_zone=STATIC:10m max_size=1G;
proxy_temp_path /var/lib/nginx/proxy 1 2;
server {
..............................
location / {
proxy_cache STATIC;
proxy_ignore_headers Cache-Control;
proxy_ignore_headers X-Accel-Expires;
proxy_ignore_headers Expires;
proxy_cache_methods GET;
proxy_cache_valid any 1d; # 200
#proxy_cache_key $host$uri$is_args$args;
proxy_cache_use_stale error timeout invalid_header updating http_500 http_502 http_503 http_504;
proxy_pass http://127.0.0.1:3000;
}}
我配置了缓存的日志记录。当我在日志中向服务器发出请求时,我得到了这个:
GET /http://myweb.local:80/ HTTP/1.0 "302" 20 "-" "10.0.2.2" "skype" "-" "MISS" "127.0.0.1:3000" "0.388" "0.389"
GET /http://myweb.local:80/en/ HTTP/1.0 "200" 14685 "-" "10.0.2.2" "skype" "-" "MISS" "127.0.0.1:3000" "1.261" "1.263"
GET /http://myweb.local:80/ HTTP/1.0 "302" 20 "-" "10.0.2.2" "skype" "-" "HIT" "-" "-" "0.001"
GET /http://myweb.local:80/en/ HTTP/1.0 "200" 14689 "-" "10.0.2.2" "skype" "-" "MISS" "127.0.0.1:3000" "1.249" "1.251"
在预先登录中:
2016-06-15T14:05:57.880Z getting http://myweb.local:80/en/
2016-06-15T14:05:59.131Z got 200 in 1251ms for http://myweb.local:80/en/
2016-06-15T14:06:00.332Z getting http://myweb.local:80/en/
2016-06-15T14:06:01.885Z got 200 in 1553ms for http://myweb.local:80/en/
答案 0 :(得分:1)
我解决了这个问题。它需要添加标题 proxy_ignore_headers Set-Cookie; 的另一个忽略。因此,通过nginx配置缓存预渲染将是:
proxy_cache_path /var/lib/nginx/cache levels=1:2 keys_zone=STATIC:10m inactive=24h max_size=2g;
server {
.......................
location / {
try_files $uri @prerender;
}
location @prerender {
set $prerender 0;
.......................
proxy_cache STATIC;
proxy_cache_valid any 1d;
proxy_ignore_headers Cache-Control;
proxy_ignore_headers X-Accel-Expires;
proxy_ignore_headers Set-Cookie;
proxy_ignore_headers Expires;
proxy_cache_key $host$uri$is_args$args;
proxy_cache_use_stale error timeout invalid_header updating http_500 http_502 http_503 http_504;
if ($prerender = 1) {
rewrite .* /$scheme://$host:$server_port$request_uri? break;
proxy_pass http://10.0.2.2:3000;
}
答案 1 :(得分:0)
向prerender服务器本身添加缓存相当容易,s3和内存缓存工作out of the box。
如果您需要nginx来处理缓存,我认为如果您将其放在问题标题中,您将获得更好的答案。