Skip to content

Commit 3c3fc19

Browse files
committed
prosody: enable speaker stats and conferene duration modules
1 parent f911df2 commit 3c3fc19

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

prosody/rootfs/defaults/conf.d/jitsi-meet.cfg.lua

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ VirtualHost "{{ .Env.XMPP_DOMAIN }}"
4646
"bosh";
4747
"pubsub";
4848
"ping";
49+
"speakerstats";
50+
"conference_duration";
4951
{{ if .Env.XMPP_MODULES }}
5052
"{{ join "\";\n\"" (splitList "," .Env.XMPP_MODULES) }}";
5153
{{ end }}
@@ -54,6 +56,9 @@ VirtualHost "{{ .Env.XMPP_DOMAIN }}"
5456
{{end}}
5557
}
5658

59+
speakerstats_component = "speakerstats.{{ .Env.XMPP_DOMAIN }}"
60+
conference_duration_component = "conferenceduration.{{ .Env.XMPP_DOMAIN }}"
61+
5762
c2s_require_encryption = false
5863

5964
{{ if and $ENABLE_AUTH (.Env.ENABLE_GUESTS | default "0" | toBool) }}
@@ -103,3 +108,8 @@ Component "{{ .Env.XMPP_MUC_DOMAIN }}" "muc"
103108
Component "focus.{{ .Env.XMPP_DOMAIN }}"
104109
component_secret = "{{ .Env.JICOFO_COMPONENT_SECRET }}"
105110

111+
Component "speakerstats.{{ .Env.XMPP_DOMAIN }}" "speakerstats_component"
112+
muc_component = "{{ .Env.XMPP_MUC_DOMAIN }}"
113+
114+
Component "conferenceduration.{{ .Env.XMPP_DOMAIN }}" "conference_duration_component"
115+
muc_component = "{{ .Env.XMPP_MUC_DOMAIN }}"

0 commit comments

Comments
 (0)