From 436882c3ebf0055c8702bb6c18ba13a631260da8 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Sun, 15 Dec 2024 16:51:11 +0100 Subject: [PATCH] fix(services/vault): proxy pass to the local vault server web port Oopsie, forgot that commit. Signed-off-by: Raito Bezarius --- services/vault/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/vault/default.nix b/services/vault/default.nix index 7540388..49c8b2c 100644 --- a/services/vault/default.nix +++ b/services/vault/default.nix @@ -46,7 +46,7 @@ in forceSSL = true; locations."/" = { - proxyPass = "http://${config.networking.fqdn}:8200"; + proxyPass = "http://127.0.0.1:8200"; }; }; };