From de592ce08c1f106e9f3e319134f726a6803f0f52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Schneider?= Date: Wed, 23 Oct 2013 16:53:22 +0200 Subject: [PATCH] gunicorn: use 5 workers instead of 10 --- init.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.d b/init.d index 0ae758c..c686ca0 100755 --- a/init.d +++ b/init.d @@ -27,7 +27,7 @@ DAEMON_ARGS="--pid $PIDFILE \ --access-logfile $LOG_DIR/gunicorn-access.log \ --log-file $LOG_DIR/gunicorn-error.log \ --bind=127.0.0.1:8022 \ ---workers=10 \ +--workers=5 \ --worker-class=sync \ --timeout=60 \ cam.wsgi:application"