InvenTree/docker/inventree/gunicorn.conf.py
2021-04-10 22:42:08 +10:00

7 lines
116 B
Python

import multiprocessing
workers = multiprocessing.cpu_count() * 2 + 1
max_requests = 1000
max_requests_jitter = 50