nodejs-proxy icon indicating copy to clipboard operation
nodejs-proxy copied to clipboard

A HTTP proxy server written in node.js

Results 12 nodejs-proxy issues
Sort by recently updated
recently updated
newest added

Hey Peter! I was looking for Latvian open source projects that I could contribute in Hacktoberfest and stumbled upon this list [](https://github.com/IonicaBizau/made-in-latvia#javascript ), that brought me to this project. Have...

Could you make it possible to run without ssl,ca,etc?

It's not clearly defined in RFC, but in wiki (http://en.wikipedia.org/wiki/X-Forwarded-For), squid (http://www.squid-cache.org/Doc/config/follow_x_forwarded_for/ btw - they're inventors of X-Forwarded-For thing) and varnish and many other proxies real-client IP is the left...

Can you add a flag into `config.js` to specify ssl ciphers, similar to nginx, so we can support perfect forward secrecy? ``` ssl_prefer_server_ciphers on; ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers...

The proxy should still run without https (ssl) support if no ssl.key is available. ``` javascript node proxy.js node.js:201 throw e; // process.nextTick error, or 'error' event on first tick...

21 Feb 14:09:23 - Starting reverse proxy server on port ':::80 21 Feb 14:09:23 - Updating host black list. 21 Feb 14:09:23 - Updating allowed ip list. 21 Feb 14:09:23...

Handy, but would be more handy if it worked with https too.

``` 27 Oct 17:28:44 - 221.237.179.232: GET http://img3.cache.netease.com/house/2010/10/27/20101027100318059a4.jpg node.js:50 throw e; // process.nextTick error, or 'error' event on first tick ^ Error: ETIMEDOUT, Connection timed out at IOWatcher.callback (net.js:877:22) at...

When using this proxy as transparent proxy host is stripped from logs. Any idea why this happens?

in parsing the incoming request, there is a little glitch in the port handling http://github.com/pkrumins/nodejs-proxy/blob/master/proxy.js#L86 here in fact the port may be in the header 'host' for reference http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html Host...