我正在尝试调试为什么我在使用http-proxy
. 有没有办法可以找出代理的 URL 是什么?
这是我当前的配置:
app.all('/api/*', function(request, response, next) {
return proxy.proxyRequest(request, response, {
host: 'foo.com',
port: 80
});
});
我正在尝试调试为什么我在使用http-proxy
. 有没有办法可以找出代理的 URL 是什么?
这是我当前的配置:
app.all('/api/*', function(request, response, next) {
return proxy.proxyRequest(request, response, {
host: 'foo.com',
port: 80
});
});