Skip to content

Commit 80cfa3c

Browse files
author
Omer Lachish
authored
set correct values for ProxyFix (#4630)
1 parent 9b71b56 commit 80cfa3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

redash/app.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from flask import Flask
2-
from werkzeug.contrib.fixers import ProxyFix
2+
from werkzeug.middleware.proxy_fix import ProxyFix
33

44
from . import settings
55

@@ -17,7 +17,7 @@ def __init__(self, *args, **kwargs):
1717
)
1818
super(Redash, self).__init__(__name__, *args, **kwargs)
1919
# Make sure we get the right referral address even behind proxies like nginx.
20-
self.wsgi_app = ProxyFix(self.wsgi_app, settings.PROXIES_COUNT)
20+
self.wsgi_app = ProxyFix(self.wsgi_app, x_for=settings.PROXIES_COUNT, x_host=1)
2121
# Configure Redash using our settings
2222
self.config.from_object("redash.settings")
2323

0 commit comments

Comments
 (0)