From 1c4542e86f566dafacf58a1b6cce35ab49268487 Mon Sep 17 00:00:00 2001 From: notohh Date: Tue, 23 Jan 2024 22:06:44 -0500 Subject: [PATCH] traefik: add hass --- hosts/yuki/services/traefik.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/yuki/services/traefik.nix b/hosts/yuki/services/traefik.nix index 4260b42..b4b5044 100644 --- a/hosts/yuki/services/traefik.nix +++ b/hosts/yuki/services/traefik.nix @@ -40,6 +40,11 @@ _: { entrypoints = ["web"]; service = "searxng"; }; + hass = { + rule = "Host(`hass.internal.flake.sh`)"; + entrypoints = ["web"]; + service = "hass"; + }; }; services = { stash.loadBalancer.servers = [{url = "http://localhost:9999";}]; @@ -48,6 +53,7 @@ _: { jellyseerr.loadBalancer.servers = [{url = "http://localhost:5055";}]; wallos.loadBalancer.servers = [{url = "http://localhost:8282";}]; searxng.loadBalancer.servers = [{url = "http://localhost:8100";}]; + hass.loadBalancer.servers = [{url = "http://localhost:8123";}]; }; }; };