1
是否可以使用node-http-prox模塊和proxy.proxyRequest到https服務器? 我試圖做到以下,但似乎沒有工作。express節點-http-proxy,proxy.proxyRequest到https服務器?
app.get('/c/users/moreuser', function(req, res) {
proxy.proxyRequest(req, res, {
host: 'api.example.com',
port: 80,
https: true
});
});
這樣做我沒有得到任何服務器響應。但我可以直接從服務器獲得響應。
不起作用。 api在端口80上,即使它的https。 – morto