Decreased the number of preforked worker to 5

This commit is contained in:
Tophe 2018-09-15 22:46:45 +02:00
parent c9321948bb
commit 3f6bbbc35f
2 changed files with 2 additions and 2 deletions

View file

@ -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).

View file

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