From d58a9b9134a27c2556a63fe5780003acb0e64f3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9B=A7-440729=20=5Bsophie=5D?= Date: Sat, 16 Aug 2025 12:35:28 +0200 Subject: [PATCH] nixos/jitsi-meet: fix prosody configuration --- nixos/modules/services/web-apps/jitsi-meet.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/web-apps/jitsi-meet.nix b/nixos/modules/services/web-apps/jitsi-meet.nix index d89920e7ef5f..219fab93e642 100644 --- a/nixos/modules/services/web-apps/jitsi-meet.nix +++ b/nixos/modules/services/web-apps/jitsi-meet.nix @@ -307,7 +307,6 @@ in "speakerstats" "external_services" "conference_duration" - "end_conference" "muc_lobby_rooms" "muc_breakout_rooms" "av_moderation" @@ -348,7 +347,9 @@ in '' muc_mapper_domain_base = "${cfg.hostName}" - cross_domain_websocket = true; + http_cors_override = { + websocket = { enabled = true } + } consider_websocket_secure = true; unlimited_jids = { @@ -381,7 +382,6 @@ in conference_duration_component = "conferenceduration.${cfg.hostName}" end_conference_component = "endconference.${cfg.hostName}" - c2s_require_encryption = false lobby_muc = "lobby.${cfg.hostName}" breakout_rooms_muc = "breakout.${cfg.hostName}" room_metadata_component = "metadata.${cfg.hostName}"