域名解析成功后访问ECS显示没有主机路由

xxx@xxx~/tools$ curl http://www.weixincosmos.top/
curl: (7) Failed to connect to www.weixincosmos.top port 80: 没有到主机的路由

nodejs代码:
var 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://www.weixincosmos.top/')

服务器上curl :
root@iZwz9571fco0ktk1hao367Z:~# curl http://localhost
Hello World
root@iZwz9571fco0ktk1hao367Z:~#

当前问题共有如下(1)个解决方案
  • dongshan8
    dongshan8

    题主您好,

    请问您的nodejs仅在127.0.0.1的80端口上监听使用吗?

    www.weixincosmos.top 并不是指向 127.0.0.1 的地址前提下,可能是无法访问的喔。

上一篇:我申请的ecs服务器连接不上
下一篇:ecs服务器可以访问google 自己的电脑用ssh代理访问不了