Update proxy.nix
Deploy NixOS / deploy (push) Failing after 8s

This commit is contained in:
2026-04-01 09:49:41 -06:00
parent 4113f739e0
commit 279a2c3ea2
+3 -1
View File
@@ -21,6 +21,7 @@ let
25567
30058
51820
5349
];
wellKnownServer = builtins.toJSON {
@@ -195,6 +196,7 @@ in
systemd.services = lib.listToAttrs (
(map (port: mkSocatService port "tcp") streamPorts)
++ (map (port: mkSocatService port "udp") streamPorts)
++ [ (mkSocatService 3478 "udp") ]
);
networking.firewall = {
@@ -203,7 +205,7 @@ in
443
]
++ streamPorts;
allowedUDPPorts = streamPorts;
allowedUDPPorts = streamPorts ++ [ 3478 ];
};
security.acme = {