prosody: var for speakerstats modules

* prosody: var for speakerstats modules
pull/1629/merge
Aaron van Meerten 9 months ago committed by GitHub
parent a1d1f2ce5a
commit 5c5742b838
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      docker-compose.yml
  2. 5
      prosody/rootfs/defaults/conf.d/jitsi-meet.cfg.lua

@ -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:

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

Loading…
Cancel
Save