Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
node-http-proxy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
node-http-proxy
Commits
e3d95eca
Commit
e3d95eca
authored
Jul 21, 2011
by
Dominic Tarr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[minor] default enableXForwarded to true
parent
5d33ad71
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
lib/node-http-proxy.js
lib/node-http-proxy.js
+4
-3
No files found.
lib/node-http-proxy.js
View file @
e3d95eca
...
@@ -341,7 +341,8 @@ HttpProxy.prototype.proxyRequest = function (req, res, options) {
...
@@ -341,7 +341,8 @@ HttpProxy.prototype.proxyRequest = function (req, res, options) {
options
=
options
||
{};
options
=
options
||
{};
options
.
host
=
options
.
host
||
this
.
target
.
host
;
options
.
host
=
options
.
host
||
this
.
target
.
host
;
options
.
port
=
options
.
port
||
this
.
target
.
port
;
options
.
port
=
options
.
port
||
this
.
target
.
port
;
options
.
enableXForwarded
=
options
.
enableXForwarded
||
false
;
options
.
enableXForwarded
=
(
undefined
===
options
.
enableXForwarded
?
true
:
options
.
enableXForwarded
);
//
//
// Check the proxy table for this instance to see if we need
// Check the proxy table for this instance to see if we need
...
@@ -589,8 +590,8 @@ HttpProxy.prototype.proxyWebSocketRequest = function (req, socket, head, options
...
@@ -589,8 +590,8 @@ HttpProxy.prototype.proxyWebSocketRequest = function (req, socket, head, options
options
=
options
||
{};
options
=
options
||
{};
options
.
host
=
options
.
host
||
this
.
target
.
host
;
options
.
host
=
options
.
host
||
this
.
target
.
host
;
options
.
port
=
options
.
port
||
this
.
target
.
port
;
//
options
.
port
=
options
.
port
||
this
.
target
.
port
;
if
(
this
.
proxyTable
&&
!
options
.
host
)
{
if
(
this
.
proxyTable
&&
!
options
.
host
)
{
location
=
this
.
proxyTable
.
getProxyLocation
(
req
);
location
=
this
.
proxyTable
.
getProxyLocation
(
req
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment