diff --git a/gunicorn.conf.py b/gunicorn.conf.py index c28254d..6f9d535 100644 --- a/gunicorn.conf.py +++ b/gunicorn.conf.py @@ -2,8 +2,9 @@ import os wsgi_app = 'trytond.application:app' bind = '0.0.0.0:8000' + # Number of worker processes -workers = (8 * os.cpu_count()) + 1 +workers = 2 # Worker class worker_class = "sync" # or "gevent" for I/O-bound tasks