From ee3506a8e7262f780eeada331898d42ca0e9838a Mon Sep 17 00:00:00 2001 From: DanBUK Date: Tue, 19 Jul 2011 09:57:21 +0100 Subject: [PATCH] Updating to enableXForwarded --- lib/node-http-proxy.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/node-http-proxy.js b/lib/node-http-proxy.js index 5b5e063..0b431bd 100644 --- a/lib/node-http-proxy.js +++ b/lib/node-http-proxy.js @@ -328,7 +328,7 @@ HttpProxy.prototype.close = function () { // options.host {string} Host of the proxy target. // options.buffer {Object} Result from `httpProxy.buffer(req)` // options.https {Object|boolean} Settings for https. -// options.allow_xforwarded_headers {boolean} Don't clobber x-forwarded headers to allow layered proxies. +// options.enableXForwarded {boolean} Don't clobber x-forwarded headers to allow layered proxies. // HttpProxy.prototype.proxyRequest = function (req, res, options) { var self = this, errState = false, location, outgoing, protocol, reverseProxy; @@ -341,7 +341,7 @@ HttpProxy.prototype.proxyRequest = function (req, res, options) { options = options || {}; options.host = options.host || this.target.host; options.port = options.port || this.target.port; - options.allow_xforwarded_headers = options.allow_xforwarded_headers || false; + options.enableXForwarded = options.enableXForwarded || false; // // Check the proxy table for this instance to see if we need @@ -381,7 +381,7 @@ HttpProxy.prototype.proxyRequest = function (req, res, options) { // * `x-forwarded-proto`: Protocol of the original request // * `x-forwarded-port`: Port of the original request. // - if (options.allow_xforwarded_headers == true) { + if (options.enableXForwarded == true) { 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';