Skip to content

Commit

Permalink
[api] Add x-forwarded-proto and x-forwarded-port to proxied HTTP …
Browse files Browse the repository at this point in the history
…requests
  • Loading branch information
indexzero committed May 19, 2011
1 parent e9b3ec9 commit 421895f
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions lib/node-http-proxy.js
Expand Up @@ -344,9 +344,16 @@ HttpProxy.prototype.proxyRequest = function (req, res, options) {
} }


// //
// Add `x-forwarded-for` header to availible client IP to apps behind proxy // Add common proxy headers to the request so that they can
// be availible to the proxy target server:
//
// * `x-forwarded-for`: IP Address of the original request
// * `x-forwarded-proto`: Protocol of the original request
// * `x-forwarded-port`: Port of the original request.
// //
req.headers['x-forwarded-for'] = req.connection.remoteAddress || req.connection.socket.remoteAddress; req.headers['x-forwarded-for'] = req.connection.remoteAddress || req.connection.socket.remoteAddress;
req.headers['x-forwarded-port'] = req.connection.remotePort || req.connection.socket.remotePort;
req.headers['x-forwarded-proto'] = res.connection.pair ? 'https' : 'http';


// //
// Emit the `start` event indicating that we have begun the proxy operation. // Emit the `start` event indicating that we have begun the proxy operation.
Expand Down

0 comments on commit 421895f

Please sign in to comment.