From 3f6bbbc35fca3502d2aba1a749a73df8affcaa51 Mon Sep 17 00:00:00 2001 From: Tophe Date: Sat, 15 Sep 2018 22:46:45 +0200 Subject: [PATCH] Decreased the number of preforked worker to 5 --- README.md | 2 +- script/start.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 15f76cd..91bca9e 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ SOGo supports use of standard protocols such as CalDAV, CardDAV and GroupDAV, as * **MYSQL_USER_PASSWORD** (required i **MYSQL_SERVER** is set): password for MYSQL_USER * **MYSQL_DATABASE_NAME** (default is sogo): name of the database - #### SOGo Configuration ##### - * **WORKERS_COUNT** (default is 15) : number of SOGo child process that will be used to handle requests. + * **WORKERS_COUNT** (default is 5) : number of SOGo child process that will be used to handle requests. (useful when using ActiveSync) * **SOGO_SogoConfigurationVariable** : set value for SOGo variable *SogoConfigurationVariable*. See the online [documentation](https://sogo.nu/files/docs/SOGoInstallationGuide.html). diff --git a/script/start.sh b/script/start.sh index 6fe093f..9bf4d01 100644 --- a/script/start.sh +++ b/script/start.sh @@ -2,7 +2,7 @@ source /usr/local/bin/common.sh -WORKERS_COUNT=${WORKERS_COUNT:-15} +WORKERS_COUNT=${WORKERS_COUNT:-5} for conf in $(printenv| grep -i SOGO_ | cut -d= -f1);do update_conf "${conf:5}" "${!conf}"