0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

nixos/netbird: Fix configuration of coturn server

This commit is contained in:
Tom Hubrecht 2024-04-24 20:35:24 +02:00
parent 47c8f08ece
commit 5ad0ea1aaf

View file

@ -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;
}
];
};