Warning, file /firebird/pyrobird/example_gunicorn_wsgi.py was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 """
0002 WSGI configuration file for Firebird application
0003 """
0004
0005
0006 config = {
0007 "PYROBIRD_DOWNLOAD_IS_DISABLED": False,
0008 "PYROBIRD_DOWNLOAD_IS_UNRESTRICTED": False,
0009 "PYROBIRD_CORS_IS_ALLOWED": True,
0010 "PYROBIRD_DOWNLOAD_PATH": "/home/firebird/firebird_www"
0011 }
0012
0013
0014 from pyrobird.server import flask_app as application, configure_flask_app
0015
0016
0017 configure_flask_app(config)