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