diff --git a/nix-system-configs/modules/system/traefik.nix b/nix-system-configs/modules/system/traefik.nix index 5f7410b..36abf3f 100644 --- a/nix-system-configs/modules/system/traefik.nix +++ b/nix-system-configs/modules/system/traefik.nix @@ -97,6 +97,13 @@ entryPoints = ["websecure"]; tls = {}; }; + + partdb = { + rule = "Host(`partdb.prg-radio.org`)"; + service = "partdb"; + entryPoints = ["websecure"]; + tls = {}; + }; }; http.services = { forgejo.loadBalancer = { @@ -104,11 +111,18 @@ {url = "http://10.1.1.4:3000";} ]; }; + wavelog.loadBalancer = { servers = [ {url = "http://10.1.1.249:8086";} ]; }; + + partdb.loadBalancer = { + servers = [ + {url = "http://10.1.1.249:8087";} + ]; + }; }; }; };