无法访问 VPS 中的 http 服务器

Can't access the http server in VPS

我在 digitalocean 上有服务器。有 运行ning nginx。我杀死了所有 nginx 进程并创建了简单的 node.js http server:

const http = require('http');

http.createServer((req, res) => {
    console.log('requeeeeest');
    res.end('hello world');
}).listen(80, '0.0.0.0', () => { console.log('listening'); });

但是当我 运行 我的服务器时,我无法连接到它。我的要求是
常年等待。还有我尝试连接的任何端口 - 常年有请求等待。为什么端口是 "running"?以及为什么我无法连接到我的 node.js 服务器。顺便说一句,我的服务器可以从本地主机访问。

这是因为防火墙 运行。