0

我使用本教程中显示的类似设置成功部署了我的流星应用程序:

http://code.krister.ee/hosting-multiple-instances-of-meteor-on-digitalocean/

当我访问 URL 时,会显示默认的 nginx。我尝试使用不同的网址,例如 demo.example.com,但没有加载。

我什至尝试将端口从 3001 更改为 80 到mup.json文件中未指定端口

我检查了 nginx/sites-enabled 文件,只有default.,所以我创建了一个新的,如教程中所述。

我仍然无法获取我的 ip 或域来加载我的应用程序。难道我做错了什么?

4

1 回答 1

1

nginx 没有指向正确的位置。Telescope 的默认端口是3000. 您是否尝试过设置 nginx 配置文件以查找而不是像教程建议的那样http://localhost:3000在端口上查找?3001

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;
    proxy_cache_bypass $http_upgrade;
}
于 2015-04-09T16:58:04.073 回答