A patch that enables SpiffWorkflow Backend to support nginx https proxy fronting spiffworkflow-backend running on http
This commit is contained in:
parent
337e497d1d
commit
3ddcfb1ddb
|
@ -7,6 +7,9 @@ from spiffworkflow_backend.services.acceptance_test_fixtures import (
|
||||||
)
|
)
|
||||||
|
|
||||||
app = create_app()
|
app = create_app()
|
||||||
|
if os.environ.get("SPIFFWORKFLOW_BACKEND_USE_WERKZEUG_MIDDLEWARE_PROXY_FIX") == "true":
|
||||||
|
from werkzeug.middleware.proxy_fix import ProxyFix
|
||||||
|
app.wsgi_app = ProxyFix(app.wsgi_app, x_proto=1)
|
||||||
|
|
||||||
# this is in here because when we put it in the create_app function,
|
# this is in here because when we put it in the create_app function,
|
||||||
# it also loaded when we were running migrations, which resulted in a chicken/egg thing.
|
# it also loaded when we were running migrations, which resulted in a chicken/egg thing.
|
||||||
|
|
Loading…
Reference in New Issue