mirror of
https://github.com/zokradonh/kopano-docker
synced 2025-06-13 02:46:28 +00:00
* fixes for setup-tools.sh fixes https://github.com/zokradonh/kopano-docker/issues/266 * add startup tests for meet demo * add architecture to contributing file * define ical_listen for kopano-ical * precreate database if it does not yet exist * fix spelling
16 lines
334 B
Python
16 lines
334 B
Python
import os
|
|
import kcconf
|
|
|
|
# Component specific configurations
|
|
kcconf.configkopano({
|
|
r"/etc/kopano/ical.cfg":
|
|
{
|
|
'ical_listen': "0.0.0.0:8080",
|
|
'log_file': "-",
|
|
'log_level': "3"
|
|
}
|
|
})
|
|
|
|
# Override configs from environment variables
|
|
kcconf.configkopano(kcconf.parseenvironmentvariables(r"/etc/kopano/"))
|