ggpx_statistics/gunicorn_config.py

9 lines
149 B
Python
Raw Normal View History

2024-11-16 11:19:03 +08:00
# gunicorn_config.py
bind = '0.0.0.0:5000'
workers = 4
timeout = 300
loglevel = 'info'
accesslog = 'access.log'
errorlog = 'error.log'
daemon = True