站点 NGINX 不工作错误显示 504 网关超时

Site NGINX not working error show 504 Gateway Time-out

我已经购买了 AWS linux 2 台服务器来托管我的 Web 应用程序

我已经发布了我的 Web 节点 js 应用程序并希望在默认 IP

上 运行

我在 /etc/nginx/sites-available/migrate.test.com

中配置了以下内容
# the IP(s) on which your node server is running. I chose port 3000.
upstream migrate.test.com {
    server privateIPaddress:3000;
    keepalive 8;
}

# the nginx server instance
server {
    listen 80;
    listen [::]:80;
    server_name migrate.test.com;
    access_log /var/log/nginx/migrate.test.com.log;

    # pass the request to the node.js server with the correct headers
    # and much more can be added, see nginx config options
    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_read_timeout 3600;
      proxy_pass http://migrate.test.com/;
      proxy_redirect off;
    }
 }


```````

**My app.js code** 
```````
var http = require('http');

http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end('Hello World\n');
}).listen(3000, "privateIPaddress");
console.log('Server running success');

``````


please check by browser output 
[output][1]


  [1]: https://i.stack.imgur.com/1BD5X.png

指定您的节点应用程序正在侦听的端口 3000,因为 http -

的默认值为 80

proxy_pass http://migrate.test.com:3000;

另外,如果你的nginx服务器运行和你的node应用服务器在同一台机器上,你也可以-

proxy_pass http://localhost:3000;

https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/