是否可以将 node-http-prox 模块和 proxy.proxyRequest 用于 https 服务器?我尝试执行以下操作,但似乎不起作用。
app.get('/c/users/moreuser', function(req, res) {
proxy.proxyRequest(req, res, {
host: 'api.example.com',
port: 80,
https: true
});
});
这样做我没有得到服务器的任何响应。但我可以直接从服务器获得响应。