当我运行以下脚本时
http = require('http'); http.createServer(function (req,res) { res.writeHead(200,{'Content-Type': 'text/plain'}); res.end('Hello World\n'); }).listen(80,"127.0.0.1"); console.log('Server running at http://127.0.0.1:80/');
通过做:
node hello.js &
curl localhost
我明白了:
Hello World
但是当我尝试从我的PC(与该服务器不是同一台计算机)访问此页面时,它会给我一个“无法找到此网页”错误.这对防火墙来说不是问题,因为我可以在端口80上运行Nginx就好了.
解决方法
你告诉服务器监听127.0.0.1,这是主机1的内部ip
无法从外部访问:告诉您的服务器听取0.0.0.0然后它的工作原理