InvenTree/InvenTree/gunicorn.conf.py

6 lines
93 B
Python
Raw Normal View History

2019-07-11 13:57:07 +00:00
import multiprocessing
bind = "0.0.0.0:8000"
2019-07-11 14:15:47 +00:00
workers = multiprocessing.cpu_count() * 2 + 1