From fb5daa3be7106c0b19eb8b2721b9b24deeee7ad6 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 25 Mar 2026 17:21:21 -0500 Subject: [PATCH] feat: proxy Grafana via nginx on hosea LAN hostnames Add grafana.home and grafana.thehellings.lan nginx proxy entries pointing at localhost:3001. This allows LAN clients (and Klaatu) to reach Grafana without Tailscale or direct port access, working around the enforce_domain restriction on hosea.shire-zebra.ts.net. --- hosts/unstable/hosea/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/unstable/hosea/default.nix b/hosts/unstable/hosea/default.nix index a03413f..7df0621 100644 --- a/hosts/unstable/hosea/default.nix +++ b/hosts/unstable/hosea/default.nix @@ -52,6 +52,8 @@ in proxies = { "jellyfin.home".target = "http://localhost:8096/"; "jellyfin.thehellings.lan".target = "http://localhost:8096/"; + "grafana.home".target = "http://localhost:3001/"; + "grafana.thehellings.lan".target = "http://localhost:3001/"; }; tailscale = { enable = true;