adds allowedTCPPorts for local network access in docker0 interface
This commit is contained in:
parent
09ad59d3c5
commit
7d64801ae2
@ -23,14 +23,24 @@
|
|||||||
400 # SSH
|
400 # SSH
|
||||||
80 # HTTP
|
80 # HTTP
|
||||||
443 # HTTPS
|
443 # HTTPS
|
||||||
|
|
||||||
22 # Git over SSH
|
22 # Git over SSH
|
||||||
32400 # Plex
|
32400 # Plex
|
||||||
|
|
||||||
7788 # Sabnzbd
|
|
||||||
8085 # Qbittorrent
|
|
||||||
];
|
];
|
||||||
allowedUDPPorts = [
|
allowedUDPPorts = [
|
||||||
51820 # WireGuard
|
51820 # WireGuard
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Allow local network access only
|
||||||
|
interfaces = {
|
||||||
|
"docker0" = {
|
||||||
|
allowedTCPPorts = [
|
||||||
|
7788 # Sabnzbd
|
||||||
|
8085 # Qbittorrent
|
||||||
|
81 # Nginx Proxy Manager
|
||||||
|
3030 # Gitea
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user