我正在寻找一种方法,通过使用 POST 请求将在 localhost:7200 上运行的应用程序反向代理到在 10.0.0.1:3000 上运行的另一台服务器
apiRoutes.post('/route', function(req, res) {
res.json({ message: 'Done' });
var tunroute=req.body.address;
console.log(tunroute);
//{tunroute contains the address i.e 10.0.0.1:300}
//{ here is where i want to proxy to server at 10.0.0.1:300 }
});
请帮忙!!