mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-14 09:03:33 -05:00
18 lines
507 B
Python
18 lines
507 B
Python
from werkzeug.contrib.fixers import ProxyFix
|
|
|
|
|
|
class CustomProxyFix(object):
|
|
def __init__(self, app, forwarded_proto):
|
|
self.app = ProxyFix(app)
|
|
self.forwarded_proto = forwarded_proto
|
|
|
|
def __call__(self, environ, start_response):
|
|
environ.update({
|
|
"HTTP_X_FORWARDED_PROTO": self.forwarded_proto
|
|
})
|
|
return self.app(environ, start_response)
|
|
|
|
|
|
def init_app(app):
|
|
app.wsgi_app = CustomProxyFix(app.wsgi_app, app.config.get('HTTP_PROTOCOL', 'http'))
|