Digitalocean托管节点app 502 Bad Gateway for POST / GET

时间:2017-07-09 10:35:42

标签: node.js nginx

我在digitalocean上托管了节点应用程序。

在文件/ etc / nginx / sites-available / default中我写了

server {
    listen 80;

    server_name dailymartbasket.in;

    location / {
        proxy_pass http://127.0.0.1:3000;
        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;
    }
}

问题:

当我在浏览器中调用我的域名时,此节点应用程序内的角度应用程序将加载到/ route。从angular app我们正在对节点应用程序进行一些POST / GET调用,但它会返回那些路由的错误

Request URL:http://<domainname>/api/categories Request Method:GET Status Code:502 Bad Gateway Remote Address:<droplet ip>:80 Referrer Policy:no-referrer-when-downgrade

请建议出现问题,我是服务器托管的新手

0 个答案:

没有答案