Files
myapp-full/deploy/gunicorn/example.py
2024-10-25 23:09:39 +03:00

14 lines
240 B
Python

bind = "0.0.0.0:5000"
reload = True
preload = True
workers = 4
timeout = 120
errorlog = '-'
accesslog = '-'
# wsgi_app = 'myapp.factory:create_app()'
wsgi_app = 'myapp:app'
loglevel = 'debug'
raw_env = [
"MYAPP_CONFIG=config.default"
]