大家好,我的nodejs服务器有问题,我在debian上运行javascript服务器,localy运行良好,当我尝试从本地网络外部调用它时问题就开始了,我的IP是固定的,并且我已经安装了所有l需要,因为它在本地工作。您知道我是否需要在服务器端或客户端更改某些内容?我的客户:
socket = new WebSocket ('ws://172.17.31.7:8080', 'proof');
我的服务器:
wsServer.on('request', function(request)
{
if ( ! originIsAllowed(request.origin))
{
// Make sure we only accept requests from an allowed origin
request.reject();
console.log((new Date()) + ' Connection from origin ' + request.origin + ' rejected.');
return;
}
var con = request.accept('proof', request.origin);
}