信号管理员在https:ERR_CONNECTION_REFUSED

时间:2017-04-09 00:54:49

标签: node.js ember.js socket.io signalmaster

我有一个使用Signalmaster的ember项目。在config / environment.js中,我有以下内容:

if (environment === 'production') {

ENV.SIGNALMASTER = {
  HOST: 'https://localhost:8890',
  PORT: '8890',
  FORCE_CONNECTION: true
};

在我的服务器上,我有signalmaster在https://localhost:8890运行(在signal目录中的development.json和production.json文件中,我将secure安全设置为true,并在server.js文件中为signalmaster I已经放入我的SSL证书和密钥的位置,如在https上运行它所需的那样 - 当运行“node server.js”时,我得到以下内容:

signal master is running at: https://localhost:8890

运行“netstat -lnp”还会显示在端口8890上运行的进程。但是当我使用该应用程序时,我会收到如下错误:

GET https://localhost:8890/socket.io/?EIO=3&transport=polling&t=LjG8--J net::ERR_CONNECTION_REFUSED

我正在使用socket.io版本1.3.7。

1 个答案:

答案 0 :(得分:0)

而不是将主机设为https://localhost:8890,似乎必须是https://[domain.com]:8890