我在digitalocean上有服务器。有运行nginx。我杀了所有nginx进程并创建了简单的node.js http服务器:
const http = require('http');
http.createServer((req, res) => {
console.log('requeeeeest');
res.end('hello world');
}).listen(80, '0.0.0.0', () => { console.log('listening'); });
但是当我运行我的服务器时,我无法连接到它。我的要求是 常年在等。对于我试图连接的任何端口 - 还有等待的常年请求。为什么端口“正在运行”?为什么我无法连接到我的node.js服务器。顺便说一句,我的服务器可以从localhost访问。
答案 0 :(得分:0)
这是由于防火墙正在运行。