0

我有一个在 8082 上运行的快速 REST API 应用程序。然后我尝试使用请求从我的另一个应用程序进行调用:

request.post({
    url: 'http://localhost:8082/test',
    method: 'POST',
    json: {
        code: 'Hello'
    }   
}, (err, res, body) => {
    console.log(err)
    console.log(res)
    console.log(body)
})

但我收到一个502 Bad Gateway错误:

<html>
<head><title>502 Bad Gateway</title></head>
<body bgcolor="white">
<center><h1>502 Bad Gateway</h1></center>
<hr><center>nginx/1.10.1</center>
</body>
</html>

它看起来像是在研究 Nginx 而不是在 expressjs 上吗?

如何强制它查看我正在运行的应用程序?

4

1 回答 1

1

检查您的其他应用程序代码以获取正确的端口,或者如果 nginx 正在侦听该端口,请更改端口。

于 2016-10-31T15:37:04.927 回答