HimoolERP/configs/gunicorn.py

8 lines
121 B
Python
Raw Normal View History

2021-12-13 02:14:00 +08:00
import multiprocessing
bind = '0.0.0.0:8000'
workers = multiprocessing.cpu_count() * 2 + 1
reload = True
2021-12-25 22:00:14 +08:00
daemon = True