Skip to content

Instantly share code, notes, and snippets.

@briancline
Created March 24, 2021 21:47
Show Gist options
  • Save briancline/c845a6a9dc9c1f13fb0cd7861630d30d to your computer and use it in GitHub Desktop.
Save briancline/c845a6a9dc9c1f13fb0cd7861630d30d to your computer and use it in GitHub Desktop.
Fix for nginx + flask
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