re-add localsend port

This commit is contained in:
Noa Aarts 2024-05-31 09:30:05 +02:00
parent ccdc123806
commit 22729ce712

View file

@ -375,8 +375,16 @@
}; };
# Open ports in the firewall. # Open ports in the firewall.
networking.firewall.allowedTCPPorts = [ 80 443 ]; networking.firewall.allowedTCPPorts = [
networking.firewall.allowedUDPPorts = [ 80 443 ]; 80 # http
443 # https
53317 # Localsend
];
networking.firewall.allowedUDPPorts = [
80
443
53317
];
# Or disable the firewall altogether. # Or disable the firewall altogether.
# networking.firewall.enable = false; # networking.firewall.enable = false;