mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-05 03:05:05 +08:00
5 lines
209 B
Python
5 lines
209 B
Python
from werkzeug.middleware.proxy_fix import ProxyFix
|
|
from webhook_to_fedora_messaging.main import create_app
|
|
application = create_app()
|
|
application.wsgi_app = ProxyFix(application.wsgi_app, x_proto=1, x_host=1)
|