node-http-proxy
node-http-proxy copied to clipboard
example of proxying to a proxy
trafficstars
Hi I am trying to proxy to a proxy. I am using http-proxy in nestjs contorller. My code looks like this: httpProxy = httpProxy.createProxyServer({ ignorePath: false, toProxy: true, changeOrigin: true, secure: false }); httpProxy.web(req, res , {target: calculateTargetFromRequest(req.url)});
I will appreciate and example.