prosody: enable speaker stats and conferene duration modules

This commit is contained in:
Saúl Ibarra Corretgé 2020-04-22 10:24:46 +02:00
parent f911df2a42
commit 3c3fc195d1
1 changed files with 10 additions and 0 deletions

View File

@ -46,6 +46,8 @@ VirtualHost "{{ .Env.XMPP_DOMAIN }}"
"bosh";
"pubsub";
"ping";
"speakerstats";
"conference_duration";
{{ if .Env.XMPP_MODULES }}
"{{ join "\";\n\"" (splitList "," .Env.XMPP_MODULES) }}";
{{ end }}
@ -54,6 +56,9 @@ VirtualHost "{{ .Env.XMPP_DOMAIN }}"
{{end}}
}
speakerstats_component = "speakerstats.{{ .Env.XMPP_DOMAIN }}"
conference_duration_component = "conferenceduration.{{ .Env.XMPP_DOMAIN }}"
c2s_require_encryption = false
{{ if and $ENABLE_AUTH (.Env.ENABLE_GUESTS | default "0" | toBool) }}
@ -103,3 +108,8 @@ Component "{{ .Env.XMPP_MUC_DOMAIN }}" "muc"
Component "focus.{{ .Env.XMPP_DOMAIN }}"
component_secret = "{{ .Env.JICOFO_COMPONENT_SECRET }}"
Component "speakerstats.{{ .Env.XMPP_DOMAIN }}" "speakerstats_component"
muc_component = "{{ .Env.XMPP_MUC_DOMAIN }}"
Component "conferenceduration.{{ .Env.XMPP_DOMAIN }}" "conference_duration_component"
muc_component = "{{ .Env.XMPP_MUC_DOMAIN }}"