refactor allowedTCPPorts configuration for docker0 interface

This commit is contained in:
Menno van Leeuwen 2024-11-16 01:36:46 +01:00
parent 7d64801ae2
commit 974a0328fc
Signed by: vleeuwenmenno
SSH Key Fingerprint: SHA256:OJFmjANpakwD3F2Rsws4GLtbdz1TJ5tkQF0RZmF0TRE

View File

@ -30,17 +30,17 @@
allowedUDPPorts = [
51820 # WireGuard
];
};
# Allow local network access only
interfaces = {
"docker0" = {
allowedTCPPorts = [
7788 # Sabnzbd
8085 # Qbittorrent
81 # Nginx Proxy Manager
3030 # Gitea
];
# Allow local network access only
interfaces = {
"docker0" = {
allowedTCPPorts = [
7788 # Sabnzbd
8085 # Qbittorrent
81 # Nginx Proxy Manager
3030 # Gitea
];
};
};
};
}