我有一个在 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 上吗?
如何强制它查看我正在运行的应用程序?