我花了3天时间尝试将Meteor移动应用程序连接到现有服务器。它在服务器上运行良好,我想用以下代码构建应用程序:
meteor run android-device --mobile-server=https://domain.com:443
我尝试为ROOT_URL
执行各种环境变量,例如:
ROOT_URL='https://domain.com'
ROOT_URL='https://domain.com:443'
ROOT_URL='https://ip:443' etc.
在任何配置中,我都遇到GET问题。他们被取消或失败。当我将移动服务器设置为http://domain.com:80
时,会出现错误:
WebSocket连接到ws://domain.com/sockjs/363/ruuwxpal/websocket 失败:WebSocket握手期间出错:意外的响应代码: 400
当我将移动服务器设置为https://domain.com:443
时,它拒绝所有GET请求,Meteor.status
我在连接和等待之间跳转。
你知道会出现什么问题吗?