我定义并运行了以下 node.js 服务器
var httpServer = http.createServer(onRequest).listen(8080,'0.0.0.0',function(){
console.log("Listening at: http://192.168.1.6:8080/");
console.log("Server is up");
});
serialListener(debug);
initSocketIO(httpServer,debug);
我可以从我的 Intranet 看到我的页面。但是无法从互联网访问。我有端口转发 8080 并使用 WAMP 服务器对其进行了测试。
谁能帮助我。还有一件有趣的事情 - node.js 服务器正在运行,但是只有在有可用的互联网连接时才能访问网页。为什么会这样?