From 0327f33d34e9ffde6009d39844fcd6c9b47ac6ba Mon Sep 17 00:00:00 2001 From: notohh Date: Mon, 25 Sep 2023 12:49:20 -0400 Subject: [PATCH] traefik: init conduit --- 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 606dd5e..63debc9 100644 --- a/hosts/sora/services/traefik.nix +++ b/hosts/sora/services/traefik.nix @@ -46,11 +46,19 @@ tls.domains = [{main = "neko.notohh.dev";}]; tls.certresolver = "production"; }; + conduit = { + rule = "Host(`matrix.notohh.dev`)"; + entrypoints = ["websecure"]; + service = "conduit"; + tls.domains = [{main = "matrix.notohh.dev";}]; + tls.certresolver = "production"; + }; }; services = { uptime-kuma.loadBalancer.servers = [{url = "http://100.87.54.48:4000";}]; gotify.loadBalancer.servers = [{url = "http://100.87.54.48:3000";}]; neko.loadBalancer.servers = [{url = "http://100.110.140.130:8080";}]; + conduit.loadBalancer.servers = [{url = "http://100.110.140.130:6167";}]; }; }; };