Здравствуйте
есть vps на нем стоит и апач и nodejs
node -v
v16.14.2
помещаю в public_html файл index.js
const http = require('http');
const hostname = 'ip';
const port = 8080;
const server = http.createServer((req, res) => {
res.statusCode = 200;
res.setHeader('Content-Type', 'text/plain');
res.end('Hello World');
});
server.listen(port, hostname, () => {
console.log(`Server running at http://${hostname}:${port}/`);
});
перехожу в браузере на
ip:8080
долго грузит и выдает "превышен интервал ожидания"
что не так?