fix(conduit): disallow conduit port in firewall

things should be running better now
This commit is contained in:
jacekpoz 2023-08-05 22:04:03 +02:00
parent ff026e6301
commit 004f4f40cc

View file

@ -34,6 +34,6 @@ in {
virtualHosts."jacekpoz.pl:8448".extraConfig = caddyConfig;
};
networking.firewall.allowedTCPPorts = [ 80 443 6167 8448 ];
networking.firewall.allowedUDPPorts = [ 80 443 6167 8448 ];
networking.firewall.allowedTCPPorts = [ 80 443 8448 ];
networking.firewall.allowedUDPPorts = [ 80 443 8448 ];
}