This commit is contained in:
zackartz 2024-05-04 00:00:17 -04:00
parent 15a604d1f1
commit 7633797430
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
2 changed files with 10 additions and 1 deletions

View file

@ -102,6 +102,16 @@
# Open ports in the firewall.
networking.firewall.allowedTCPPorts = [80 443 6969 2022];
networking.firewall.allowedTCPPortRanges = [
{
from = 25565;
to = 25575;
}
{
from = 24454;
to = 24464;
}
];
networking.firewall.allowedUDPPorts = [80 443 6969 2022];
# Or disable the firewall altogether.
# networking.firewall.enable = false;

View file

@ -43,7 +43,6 @@ in {
};
};
systemd.services."wings" = {
after = ["docker.service"];
requires = ["docker.service"];