node-http-proxy
node-http-proxy copied to clipboard
A full-featured http proxy for node.js
As mentioned by @bdefore and @kdepp in #851, changeOrigin should be set to true by default. The very first reason is simply to be compatible with the HTTP 1.1 specifications...
Is there a way to retry requests to the target (say implement an exponential backoff)? Would like to retry certain type of failures for certain requests.
Hi, I've created project https://github.com/darekf77/vpn-split which is using node-http-proxy to proxy some hosts from my vpn provider to my other computers in local network... basically I am using for each...
I have encountered a problem of file descriptor leakage. When the browser is forced to close after establishing multiple websocket connections, the number of file descriptors of the agent program...
Hi all, Regarding the changes made in https://github.com/http-party/node-http-proxy/pull/1447 The change causes unexpected behavior when handling requests from HTTP clients which send the `Expect` header. I would expect the `proxyReq` event...
Hi there, When using `curl --proxy-insecure -k -x "127.0.0.1:5050" 'http://httpbin.org/anything?json' -v` Everything works as expected. When using `curl --proxy-insecure -k -x "127.0.0.1:5050" 'http://httpbin.org/anything?json' -v` All I get back is a...
the current socket cannot match the request, unable to determine which request the socket belongs to(in multiple ws proxy scenarios).
I am setting basic proxy server one which logs request headers and foward it to actual host and then show actual response on webpage. However following code is not showing...
This also required adjusting web-incoming to pass the options object to the web-outgoing passes. One thing I noticed is that web-outgoing doesn't appear to be exposed to anyone that wants...
I saw issue #1412 and PR #1441. I'd like to support all follow-redirects options, I created another PR to support it. I respect the attribute format of #1441. Notes: -...