0

我正在尝试编写我的第一个节点 http 服务器。我让它在我的 linux 机器上运行。如果我在浏览器中输入网址。我看到了 hello world 网页。

 myLinuxHostName:1227/

我现在正试图从我的 Windows 机器连接到这个 linux 节点服务器。如果我从我的 Windows 机器在浏览器中输入我的相同 url,我会得到网页不可用。我尝试 ping 我的 linux 主机,效果很好。我究竟做错了什么?

我正在使用 nodejs.org 主页上的简单 http 服务器代码。

4

1 回答 1

1

如果您使用此示例:

var http = require('http');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello World\n');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');

然后只使用这个确切的 ip 127.0.0.1 运行,这意味着 localhost 和其他 VHost 没有到达该服务器。你必须做这样的事情。

var http = require('http');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello World\n');
}).listen(1337);

更多信息:http ://nodejs.org/api/net.html#net_server_listen_port_host_backlog_callback

于 2013-11-08T00:36:06.613 回答