MeteorJS:如何将localhost更改为自定义域?

时间:2014-04-13 12:13:11

标签: javascript configuration dns meteor meteorite

我正在尝试将我的测试meteor js应用程序部署到自己的虚拟服务器并且卡住了。

某些已安装的模块,例如OAuth的accounts-github,使用Meteor.absoluteUrl方法,该方法无法识别当前域并返回如下结果:

http://localhost:3000/_oauth/github?close

如何教meteor设置custom.domain而不是localhost

1 个答案:

答案 0 :(得分:6)

这样做的唯一方法(现在)是modify your environment variable ROOT_URL,例如在流星跑之前:

ROOT_URL=http://my.domain:3000/ meteor --port 3000