fix(network): add standard web ports to allowed TCP ports
Add ports 80 and 443 to the list of allowed TCP ports in the firewall configuration. This change ensures that HTTP and HTTPS traffic can pass through, which is essential for web services to operate correctly.
This commit is contained in:
parent
95c68ccc7d
commit
1dde4c769e
|
@ -43,6 +43,8 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = [
|
networking.firewall.allowedTCPPorts = [
|
||||||
|
80
|
||||||
|
443
|
||||||
8384
|
8384
|
||||||
22000
|
22000
|
||||||
config.services.netatalk.port
|
config.services.netatalk.port
|
||||||
|
|
Loading…
Reference in a new issue