From 41857a28542038224e65830ec808e76e66f205b3 Mon Sep 17 00:00:00 2001 From: nek0 Date: Sat, 16 Oct 2021 19:21:14 +0200 Subject: [PATCH] replace localhsot with ip to force local IPv4 --- hosts/containers/keycloak/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/containers/keycloak/default.nix b/hosts/containers/keycloak/default.nix index aac5c0ea..a99c6110 100644 --- a/hosts/containers/keycloak/default.nix +++ b/hosts/containers/keycloak/default.nix @@ -29,11 +29,11 @@ in forceSSL = true; enableACME = true; locations."/" = { - proxyPass = "https://localhost:8443"; + proxyPass = "https://127.0.0.1:8443"; # proxyWebsockets = true; }; locations."/auth" = { - proxyPass = "https://localhost:8443/auth"; + proxyPass = "https://127.0.0.1:8443/auth"; # proxyWebsockets = true; }; };