我尝试连接到ws(节点js)时出错

时间:2018-06-02 11:16:22

标签: websocket

const WebSocket = require('html5-websocket');
let host = 'localhost';
const agent_websock = new WebSocket(`ws://${host}:54321/`, {transports: ['websocket', 'polling']});

当我尝试使用此库从其他ip连接到服务器时,一切正常..但是当我尝试以相同的方式从ws运行到port 54321的同一服务器连接时,我得到的错误就像:

  

错误:连接ECONNREFUSED 127.0.0.1:54321

为什么会发生这种情况?也许在nginx上有配置的东西?

0 个答案:

没有答案