mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-12 02:46:20 +08:00
6 lines
275 B
Python
6 lines
275 B
Python
from werkzeug.middleware.proxy_fix import ProxyFix
|
|
from noggin.app import create_app
|
|
application = create_app()
|
|
# application.wsgi_app.add_files('/etc/noggin/well-known-files', prefix='.well-known/')
|
|
application.wsgi_app = ProxyFix(application.wsgi_app, x_proto=1, x_host=1)
|