From ff6d9bc6aa8e11ae4c973b092504a1c89894f768 Mon Sep 17 00:00:00 2001 From: Pierre Ozoux Date: Tue, 17 Nov 2020 09:42:45 +0100 Subject: [PATCH] Fix websocket We noticed that websocket were broken with this config. We believe that the translation from old config to new config in [this commit](https://github.com/jitsi/docker-jitsi-meet/commit/130eb551a7666a9a143343e4ac7e707e3d6c6c02#diff-6f9b0c296a7ff789834c1414349f64f956f2b64df6e405fd45f62c6a11edad3fL34) didn't translate it well. We are actually wondering what does private stands for in this context. With this change, we can confirm that wss works again as expected. --- jvb/rootfs/defaults/jvb.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jvb/rootfs/defaults/jvb.conf b/jvb/rootfs/defaults/jvb.conf index 078e8a0..45f9b34 100644 --- a/jvb/rootfs/defaults/jvb.conf +++ b/jvb/rootfs/defaults/jvb.conf @@ -42,8 +42,9 @@ videobridge { server-id = "{{ $WS_SERVER_ID }}" } http-servers { - private { + public { host = 0.0.0.0 + port = 9090 } } }