xmpp: disable storage for MUC components

Fixes: https://github.com/jitsi/docker-jitsi-meet/issues/64
This commit is contained in:
Saúl Ibarra Corretgé 2019-02-13 10:49:09 +01:00
parent aaf7baa9e8
commit 3a534c63b5
1 changed files with 2 additions and 2 deletions

View File

@ -43,11 +43,11 @@ Component "{{ .Env.XMPP_INTERNAL_MUC_DOMAIN }}" "muc"
"{{ join "\";\n\"" (splitList "," .Env.XMPP_INTERNAL_MUC_MODULES) }}";
{{ end }}
}
storage = "internal"
storage = "memory"
muc_room_cache_size = 1000
Component "{{ .Env.XMPP_MUC_DOMAIN }}" "muc"
storage = "internal"
storage = "memory"
modules_enabled = {
{{ if .Env.XMPP_MUC_MODULES }}
"{{ join "\";\n\"" (splitList "," .Env.XMPP_MUC_MODULES) }}";