Open ports for Netatalk & WebOne

This commit is contained in:
Fern Garden 2025-07-12 15:36:55 +08:00
parent e1456e2b3a
commit f89b492dc9

View file

@ -20,12 +20,6 @@
};
};
# Open ports for DHCP server.
networking.firewall.allowedUDPPorts = [
53
67
];
# Enable WebOne HTTP proxy.
services.webone.enable = true;
@ -40,4 +34,12 @@
};
};
};
# Open ports for services.
networking.firewall = {
allowedUDPPorts = [
53 # DHCP server.
67 # DHCP server.
];
allowedTCPPorts = [8080 548]; # WebOne & Netatalk.
};
}