Skip to content

Commit

Permalink
Merge branch 'release_24.0' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoranzo committed Apr 10, 2024
2 parents c7cb47a + 6fbd2ab commit 466a7a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy/web/framework/middleware/xforwardedhost.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ def __init__(self, app, global_conf=None):

def __call__(self, environ, start_response):
if x_forwarded_host := environ.get("HTTP_X_FORWARDED_HOST", None):
environ["ORGINAL_HTTP_HOST"] = environ["HTTP_HOST"]
environ["ORIGINAL_HTTP_HOST"] = environ.get("HTTP_HOST")
environ["HTTP_HOST"] = x_forwarded_host.split(", ", 1)[0]
if x_forwarded_for := environ.get("HTTP_X_FORWARDED_FOR", None):
environ["ORGINAL_REMOTE_ADDR"] = environ["REMOTE_ADDR"]
environ["ORIGINAL_REMOTE_ADDR"] = environ.get("REMOTE_ADDR")
environ["REMOTE_ADDR"] = x_forwarded_for.split(",", 1)[0].strip()
x_forwarded_proto = environ.get("HTTP_X_FORWARDED_PROTO", None)
if x_forwarded_proto:
Expand Down

0 comments on commit 466a7a7

Please sign in to comment.