Skip to content

Commit fdf5030

Browse files
committed
prosody: update configuration
1 parent afafe23 commit fdf5030

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

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

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
admins = { "{{ .Env.JICOFO_AUTH_USER }}@{{ .Env.XMPP_AUTH_DOMAIN }}" }
1+
admins = {
2+
"{{ .Env.JICOFO_AUTH_USER }}@{{ .Env.XMPP_AUTH_DOMAIN }}",
3+
"{{ .Env.JVB_AUTH_USER }}@{{ .Env.XMPP_AUTH_DOMAIN }}"
4+
}
5+
26
plugin_paths = { "/prosody-plugins/", "/prosody-plugins-custom" }
37
http_default_host = "{{ .Env.XMPP_DOMAIN }}"
48

@@ -83,25 +87,28 @@ VirtualHost "{{ .Env.XMPP_RECORDER_DOMAIN }}"
8387
{{ end }}
8488

8589
Component "{{ .Env.XMPP_INTERNAL_MUC_DOMAIN }}" "muc"
90+
storage = "memory"
8691
modules_enabled = {
8792
"ping";
8893
{{ if .Env.XMPP_INTERNAL_MUC_MODULES }}
8994
"{{ join "\";\n\"" (splitList "," .Env.XMPP_INTERNAL_MUC_MODULES) }}";
9095
{{ end }}
9196
}
92-
storage = "memory"
93-
muc_room_cache_size = 1000
97+
muc_room_locking = false
98+
muc_room_default_public_jids = true
9499

95100
Component "{{ .Env.XMPP_MUC_DOMAIN }}" "muc"
96101
storage = "memory"
97102
modules_enabled = {
103+
"muc_meeting_id";
98104
{{ if .Env.XMPP_MUC_MODULES }}
99105
"{{ join "\";\n\"" (splitList "," .Env.XMPP_MUC_MODULES) }}";
100106
{{ end }}
101107
{{ if and $ENABLE_AUTH (eq $AUTH_TYPE "jwt") }}
102108
"{{ $JWT_TOKEN_AUTH_MODULE }}";
103109
{{ end }}
104110
}
111+
muc_room_cache_size = 1000
105112
muc_room_locking = false
106113
muc_room_default_public_jids = true
107114

0 commit comments

Comments
 (0)