From 71289e63892b77583fbb753a1fa4c6667450a3b3 Mon Sep 17 00:00:00 2001 From: aleld <89131829+aleld@users.noreply.github.com> Date: Wed, 2 Feb 2022 17:12:26 +0100 Subject: [PATCH] Fixed not being able to start a jitsi conference I am accessing my jitsi domain via webbrowser and in the preview screen everything seems fine, but when I click "join conference" nothing happens. After a few seconds I get an error saying "your connection was terminated. A new attempt will be started in 30 seconds". Fix https://community.jitsi.org/t/jitsi-meet-in-docker-container-websocket-error/88703/15 --- roles/matrix-jitsi/templates/prosody/env.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/matrix-jitsi/templates/prosody/env.j2 b/roles/matrix-jitsi/templates/prosody/env.j2 index 941f2c253..f6c2b3897 100644 --- a/roles/matrix-jitsi/templates/prosody/env.j2 +++ b/roles/matrix-jitsi/templates/prosody/env.j2 @@ -5,7 +5,7 @@ ENABLE_AV_MODERATION={{1 if matrix_jitsi_enable_av_moderation else 0}} ENABLE_BREAKOUT_ROOMS={{1 if matrix_jitsi_enable_breakout_rooms else 0}} ENABLE_GUESTS={{ 1 if matrix_jitsi_enable_guests else 0 }} ENABLE_LOBBY={{ 1 if matrix_jitsi_enable_lobby else 0 }} -ENABLE_XMPP_WEBSOCKET +ENABLE_XMPP_WEBSOCKET=0 GLOBAL_CONFIG GLOBAL_MODULES JIBRI_RECORDER_USER={{ matrix_jitsi_jibri_recorder_user }}