我制作了一个简单的 node.js 服务器:
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(9999, '0.0.0.0');
console.log('Server running at post 9999');
它可以输出:
Server running at port 9999
但我无法通过 VPS/VDS IP 访问代码所在位置:http://185.221.154.249:9999/ 这是为什么?
代码位于我的 VDS(centos 7)内的什么位置重要吗?
注意:我的域名与该 IP 绑定,并且在 443 号后运行良好:https://webscraping.pro/(WP 上的博客就在那里)