You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ProxyFix object in 0.14 by default would pay attention to the X-Forwarded-Proto: https headers used by AWS ELB servers.
The following line was all I had to add to my flask app:
wsgi_app = ProxyFix(wsgi_app)
In 0.15 this behavior was modified and all my flask apps broke if they were behind an SSL enabled load balancer.
This is clearly a bug as it breaks backward compatibility with a minor release.
The text was updated successfully, but these errors were encountered:
The ProxyFix object in 0.14 by default would pay attention to the X-Forwarded-Proto: https headers used by AWS ELB servers.
The following line was all I had to add to my flask app:
wsgi_app = ProxyFix(wsgi_app)
In 0.15 this behavior was modified and all my flask apps broke if they were behind an SSL enabled load balancer.
This is clearly a bug as it breaks backward compatibility with a minor release.
The text was updated successfully, but these errors were encountered: