From d8fb8a618d6c63564cbc543311a4590c716f4768 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Sun, 6 Aug 2023 20:39:48 +0300 Subject: [PATCH] grafana listen on wildcard --- hosts/vno1-oh2/configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/vno1-oh2/configuration.nix b/hosts/vno1-oh2/configuration.nix index d57f93c..c0aae01 100644 --- a/hosts/vno1-oh2/configuration.nix +++ b/hosts/vno1-oh2/configuration.nix @@ -133,7 +133,8 @@ server = { # TODO tailscale service? domain = "${config.networking.hostName}.${config.networking.domain}"; - http_addr = myData.hosts."${config.networking.hostName}.${config.networking.domain}".jakstIP; + # NB: this was tailscale0 before, now controlled via firewall. + http_addr = "0.0.0.0"; http_port = myData.ports.grafana; }; };