Unverified Commit 75541131 authored by Sarah Brofeldt's avatar Sarah Brofeldt Committed by GitHub
Browse files

Merge pull request #306608 from Tom-Hubrecht/netbird-coturn

nixos/netbird: Fix configuration of coturn server
parents 64742a25 5ad0ea1a
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -148,10 +148,10 @@ in
        allowedUDPPorts = cfg.openPorts;
        allowedTCPPorts = cfg.openPorts;

        allowedUDPPortRanges = [
        allowedUDPPortRanges = with config.services.coturn; [
          {
            from = cfg.minPort;
            to = cfg.maxPort;
            from = min-port;
            to = max-port;
          }
        ];
      };