prosody: var for speakerstats modules

* prosody: var for speakerstats modules
This commit is contained in:
Aaron van Meerten
2024-02-05 13:40:39 -06:00
committed by GitHub
parent a1d1f2ce5a
commit 5c5742b838
2 changed files with 6 additions and 0 deletions

View File

@@ -301,6 +301,7 @@ services:
- XMPP_RECORDER_DOMAIN - XMPP_RECORDER_DOMAIN
- XMPP_PORT - XMPP_PORT
- XMPP_SERVER_S2S_PORT - XMPP_SERVER_S2S_PORT
- XMPP_SPEAKERSTATS_MODULES
networks: networks:
meet.jitsi: meet.jitsi:
aliases: aliases:

View File

@@ -397,6 +397,11 @@ Component "focus.{{ $XMPP_DOMAIN }}" "client_proxy"
Component "speakerstats.{{ $XMPP_DOMAIN }}" "speakerstats_component" Component "speakerstats.{{ $XMPP_DOMAIN }}" "speakerstats_component"
muc_component = "{{ $XMPP_MUC_DOMAIN }}" muc_component = "{{ $XMPP_MUC_DOMAIN }}"
{{- if .Env.XMPP_SPEAKERSTATS_MODULES }}
modules_enabled = {
"{{ join "\";\n \"" (splitList "," .Env.XMPP_SPEAKERSTATS_MODULES) }}";
}
{{- end }}
Component "conferenceduration.{{ $XMPP_DOMAIN }}" "conference_duration_component" Component "conferenceduration.{{ $XMPP_DOMAIN }}" "conference_duration_component"
muc_component = "{{ $XMPP_MUC_DOMAIN }}" muc_component = "{{ $XMPP_MUC_DOMAIN }}"