gunicorn: use 5 workers instead of 10

This commit is contained in:
Jérôme Schneider 2013-10-23 16:53:22 +02:00
parent ed4df7fb4e
commit de592ce08c
1 changed files with 1 additions and 1 deletions

2
init.d
View File

@ -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"