0
我想訪問http://mypublicIP:2888
,Node.js運行於mypublicIP
和port
。服務器超時!有誰知道爲什麼會發生這種情況?我能做些什麼來確定潛在的問題?Node.js Web服務器
編輯
我相信,如果你不指定IP地址,節點應該從所有網絡接口訪問。節點代碼:
// Load the http module to create an http server.
var http = require('http');
// Configure our HTTP server to respond with Hello World to all requests.
var server = http.createServer(function (request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.end("Hello World\n");
});
server.listen(2888);
// Put a friendly message on the terminal
console.log("Server running somewhere....");
可能防火牆的問題,但有辦法太少信息輕鬆解決。 –
請問你有什麼代碼? – Vinz243
請注意,您的示例使用端口8000,但您的代碼使用端口2888. –