HimoolERP/configs/gunicorn.py

7 lines
107 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