Skip to content

Commit

Permalink
prosody: enable speaker stats and conferene duration modules
Browse files Browse the repository at this point in the history
  • Loading branch information
saghul committed Apr 22, 2020
1 parent f911df2 commit 3c3fc19
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions prosody/rootfs/defaults/conf.d/jitsi-meet.cfg.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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) }}
Expand Down Expand Up @@ -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 }}"

0 comments on commit 3c3fc19

Please sign in to comment.