Я устанавливаю nodejs и nginx на свои centos 7. Мое приложение отлично работает на my_domain: 3000, но ошибка на my_domain.com с сообщением Страница, которую вы ищете, временно недоступна. Пожалуйста, попробуйте позже. Это мой nginx.conf. Пожалуйста помогите
nginx.conf
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name digitaloceantwo.25o2.in;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
proxy_pass http://digitaloceantwo.25o2.in:8080;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
hello.js
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(8080,'159.65.150.176');
console.log('Server running at http://digitaloceantwo.25o2.in:8080/');