Commit 5ad0ea1a authored by Tom Hubrecht's avatar Tom Hubrecht
Browse files

nixos/netbird: Fix configuration of coturn server

parent 47c8f08e
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;
          }
        ];
      };