From 1727755942336bc1998b9d69d365a37612c2f192 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 14 Apr 2026 18:21:21 +0000 Subject: [PATCH] fix: open TURN firewall ports 5349 (TCP) and 3478 (UDP) in element-calling.nix Agent-Logs-Url: https://github.com/naturallaw777/staging_alpha/sessions/484cfc63-13c7-4008-8a94-cff4d554c27c Co-authored-by: naturallaw777 <99053422+naturallaw777@users.noreply.github.com> --- modules/element-calling.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/element-calling.nix b/modules/element-calling.nix index 3c3cd23..95e16a9 100755 --- a/modules/element-calling.nix +++ b/modules/element-calling.nix @@ -140,7 +140,8 @@ EOF }; }; - networking.firewall.allowedTCPPorts = [ 7881 ]; + networking.firewall.allowedTCPPorts = [ 5349 7881 ]; + networking.firewall.allowedUDPPorts = [ 3478 ]; networking.firewall.allowedUDPPortRanges = [ { from = 7882; to = 7894; } ];