From c510375270b768a3ae79f349c0534c5a9bae8c7a Mon Sep 17 00:00:00 2001 From: Nathan Date: Sun, 27 Jul 2025 21:59:44 -0500 Subject: [PATCH] port --- system-config/services/containers/netbird/default.nix | 4 ++-- system-config/services/containers/traefik/default.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/system-config/services/containers/netbird/default.nix b/system-config/services/containers/netbird/default.nix index 0fded7f..4894042 100644 --- a/system-config/services/containers/netbird/default.nix +++ b/system-config/services/containers/netbird/default.nix @@ -283,7 +283,7 @@ }; "HttpConfig" = { - "Address" = "0.0.0.0:80"; + "Address" = "0.0.0.0:443"; "AuthIssuer" = "https://auth.blunkall.us/realms/General"; "AuthAudience" = "https://auth.blunkall.us/realms/General/.well-known/openid-configuration"; "AuthKeysLocation" = "https://auth.blunkall.us/realms/General/protocol/openid-connect/certs"; @@ -368,7 +368,7 @@ }; networking.firewall = { - allowedTCPPorts = [ 80 8080 33080 443 ]; + allowedTCPPorts = [ 80 8080 33073 33080 ]; allowedUDPPorts = [ 3478 ]; allowedUDPPortRanges = [{ from = 49152; to = 54152; }]; }; diff --git a/system-config/services/containers/traefik/default.nix b/system-config/services/containers/traefik/default.nix index 7eaa834..de00e38 100644 --- a/system-config/services/containers/traefik/default.nix +++ b/system-config/services/containers/traefik/default.nix @@ -229,8 +229,8 @@ passHostHeader = true; servers = [ { url = "http://192.168.100.23:80"; } ]; }; - netbirdApi.loadBalancer.servers = [ { url = "http://192.168.100.23:80"; } ]; - netbirdMgmt.loadBalancer.servers = [ { url = "h2c://192.168.100.23:80"; } ]; + netbirdApi.loadBalancer.servers = [ { url = "http://192.168.100.23:33073"; } ]; + netbirdMgmt.loadBalancer.servers = [ { url = "h2c://192.168.100.23:33073"; } ]; netbirdSignal.loadBalancer.servers = [ { url = "h2c://192.168.100.23:8080"; } ]; #homeassistant.loadBalancer.servers = [ { url = "http://192.168.100.10:8123"; } ];