From c93be9948515667e59d7ec310e0fa49f85d75745 Mon Sep 17 00:00:00 2001 From: notohh Date: Tue, 23 Jan 2024 21:25:10 -0500 Subject: [PATCH] traefik: init woodpecker --- hosts/sora/services/traefik.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/hosts/sora/services/traefik.nix b/hosts/sora/services/traefik.nix index 3db6187..b4fc21d 100644 --- a/hosts/sora/services/traefik.nix +++ b/hosts/sora/services/traefik.nix @@ -153,6 +153,13 @@ tls.certresolver = "production"; middlewares = "cors-allow-all"; }; + woodpecker = { + rule = "Host(`ci.flake.sh`)"; + entrypoints = ["websecure"]; + service = "woodpecker"; + tls.domains = [{main = "*.flake.sh";}]; + tls.certresolver = "production"; + }; }; services = { forgejo.loadBalancer = { @@ -173,6 +180,7 @@ ntfy-sh.loadBalancer.servers = [{url = "http://100.104.42.96:8090";}]; attic.loadBalancer.servers = [{url = "http://100.104.42.96:8200";}]; minio.loadBalancer.servers = [{url = "http://100.69.79.81:9005";}]; + woodpecker.loadBalancer.servers = [{url = "http://100.82.146.40:8200";}]; }; }; };