meteor loginButtons不能在nginx后面工作

时间:2014-01-27 15:38:40

标签: nginx meteor

我在端口3000上运行流星应用程序,而不是root用户,并希望nginx将端口80重定向到端口3000.

我遵循了here的建议。

这部分有用,首页出现正常,但{{loginButtons}}无法呈现。我正在使用accounts-password和accounts-ui-bootstrap-dropdown。

我对默认nginx配置所做的唯一更改是服务器部分中的这些行。

location ~* "^/[a-z0-9]{40}\.(css|js)$" {
  root /home/ubuntu/bundle/programs/client;
  access_log off;
  expires max;
}

location ~ "^/packages" {
  root /home/ubuntu/bundle/programs/client;
  access_log off;
}

location / {     
  proxy_pass http://localhost:3000/;
  proxy_http_version 1.1;
  proxy_set_header Upgrade $http_upgrade;
  proxy_set_header Connection "upgrade";
  proxy_set_header Host $host;
}

控制台报告未捕获的SyntaxError。有什么建议吗?

0 个答案:

没有答案