503 Service Unavailable
but even using nginx it does not work...
502 Bad Gateway
server {
listen 80;
server_name rave.dig3.net;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://127.0.0.1:4567/;
proxy_redirect off;
# Socket.IO Support
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}
I followed the documentation and some posts here... but nothing works
IT WORKS
https://community.nodebb.org/topic/1957/nginx-502-bad-gateway/17 this helped me