| // HTTP forward proxy server that can also proxy HTTPS requests | |
| // using the CONNECT method | |
| // requires https://github.com/nodejitsu/node-http-proxy | |
| var httpProxy = require('http-proxy'), | |
| url = require('url'), | |
| net = require('net'), | |
| http = require('http'); |