mirror of
https://github.com/bugsink/bugsink.git
synced 2026-01-07 05:40:26 -06:00
As per discussion with @sekrause on #101 Briefly: recent reduction is a good idea, but 1 is probably too little.
5 lines
116 B
Python
5 lines
116 B
Python
# gunicorn config file for Docker deployments
|
|
import multiprocessing
|
|
|
|
workers = min(multiprocessing.cpu_count(), 4)
|