为什么nodejs http请求在访问本地服务快递应用程序时不起作用?

时间:2016-10-31 15:34:54

标签: node.js express nginx requestjs

我有一个在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而不是表达吗?

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

1 个答案:

答案 0 :(得分:1)

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