InvenTree/InvenTree/gunicorn.conf.py

9 lines
139 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
2020-12-13 22:43:07 +00:00
max_requests = 1000
max_requests_jitter = 50