From 116c8d81c62f2a8aee5ce2a0fb53dd3e7907fbe3 Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Sat, 5 Nov 2022 21:08:28 -0400 Subject: [PATCH] chore(grfn/mugwump): Use non-deprecated option for grafana port Reference the non-deprecated version of the grafana http port option in the proxyPass for the nginx config of mugwump. Change-Id: Ic7f370c7f7a451fe95a046d491d7b1cdf5f728cd Reviewed-on: https://cl.tvl.fyi/c/depot/+/7200 Reviewed-by: grfn Autosubmit: grfn Tested-by: BuildkiteCI --- users/grfn/system/system/machines/mugwump.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/grfn/system/system/machines/mugwump.nix b/users/grfn/system/system/machines/mugwump.nix index e52576a6c..f5b3176ca 100644 --- a/users/grfn/system/system/machines/mugwump.nix +++ b/users/grfn/system/system/machines/mugwump.nix @@ -145,7 +145,7 @@ with lib; enableACME = true; forceSSL = true; locations."/" = { - proxyPass = "http://localhost:${toString config.services.grafana.port}"; + proxyPass = "http://localhost:${toString config.services.grafana.settings.server.http_port}"; }; }; };