mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-04 20:10:02 +08:00
5 lines
187 B
Python
5 lines
187 B
Python
from werkzeug.middleware.proxy_fix import ProxyFix
|
|
from tahrir.app import create_app
|
|
application = create_app()
|
|
application.wsgi_app = ProxyFix(application.wsgi_app, x_proto=1, x_host=1)
|