changeset 6927:557fb1f85ca1

config: increase number of gunicorn worker processes in the default configuration The default uwsgi configuration uses 4 workers - use the same number of processes for gunicorn.
author domruf <dominikruf@gmail.com>
date Thu, 31 Aug 2017 22:38:21 +0200
parents 32440c07a085
children 81eb8dbf0e7c
files kallithea/lib/paster_commands/template.ini.mako
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/lib/paster_commands/template.ini.mako	Mon Sep 11 21:16:49 2017 +0200
+++ b/kallithea/lib/paster_commands/template.ini.mako	Thu Aug 31 22:38:21 2017 +0200
@@ -92,7 +92,7 @@
 use = egg:gunicorn#main
 <%text>## number of process workers. You must set `instance_id = *` when this option</%text>
 <%text>## is set to more than one worker</%text>
-workers = 1
+workers = 4
 <%text>## process name</%text>
 proc_name = kallithea
 <%text>## type of worker class, one of sync, eventlet, gevent, tornado</%text>