From 9db947284fbd6615585a0eb27a9f45e10f03a413 Mon Sep 17 00:00:00 2001 From: Christine Elisabeth Koppel Date: Sat, 7 Feb 2026 18:30:59 +0100 Subject: [PATCH] Add partdb service configuration to Traefik --- nix-system-configs/modules/system/traefik.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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";} + ]; + }; }; }; };