nginx代理不等慢速流星应用程序

时间:2016-06-22 13:38:31

标签: meteor nginx proxy

我有一个在meteor:3000运行的流星应用程序,但有些文件很慢(最多10秒)提供给客户端,因为服务器功能不强。

直接访问meteor应用程序时可以正常工作,但是使用nginx反向代理需要长时间服务的文件根本无法提供,它们会产生404.

这是我的代理配置

location / {
  proxy_pass http://meteor:3000;
  proxy_http_version 1.1;
  proxy_set_header Upgrade $http_upgrade;
  proxy_set_header Connection "upgrade";
  proxy_set_header Host $http_host;
  proxy_set_header X-Real-IP $remote_addr;
  proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
  proxy_set_header X-Forward-Proto http;
  proxy_set_header X-Nginx-Proxy true;
  proxy_redirect off;
  proxy_connect_timeout   100000000s; # these values seem to not affect nginx at all
  proxy_send_timeout      150000000s;
  proxy_read_timeout      200000000s;
}

Loading the site using reverse proxy

Loading the site directly

0 个答案:

没有答案