This commit is contained in:
parent
27086b2cdf
commit
bcee0c93cb
1 changed files with 3 additions and 3 deletions
|
@ -1,9 +1,6 @@
|
||||||
{ config, lib, pkgs, ... }: {
|
{ config, lib, pkgs, ... }: {
|
||||||
networking = {
|
networking = {
|
||||||
firewall = {
|
firewall = {
|
||||||
allowedUDPPorts = [
|
|
||||||
3478 # Headscale DERP UDP
|
|
||||||
];
|
|
||||||
allowedTCPPorts = [
|
allowedTCPPorts = [
|
||||||
80 # HTTP
|
80 # HTTP
|
||||||
443 # HTTPS
|
443 # HTTPS
|
||||||
|
@ -11,6 +8,9 @@
|
||||||
25565 # Minecraft
|
25565 # Minecraft
|
||||||
1443 # Headscale DERP
|
1443 # Headscale DERP
|
||||||
];
|
];
|
||||||
|
allowedUDPPorts = [
|
||||||
|
3478 # Headscale DERP UDP
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
nftables = {
|
nftables = {
|
||||||
|
|
Loading…
Reference in a new issue