Created
March 24, 2021 21:47
-
-
Save briancline/c845a6a9dc9c1f13fb0cd7861630d30d to your computer and use it in GitHub Desktop.
Fix for nginx + flask
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from werkzeug.middleware import proxy_fix | |
app = flask.Flask('thing') | |
app.wsgi_app = proxy_fix.ProxyFix(app.wsgi_app, x_proto=1, x_host=1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment