From dd5ac98f894b4ad6b1f2be8517d47d1a885ec52e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Christ?= Date: Sun, 1 Dec 2024 20:20:27 +0100 Subject: [PATCH] nixos/keycloak: Enable Dual-Stack by default. Keycloak already has Dual-Stack made the default for a while: https://github.com/keycloak/keycloak/pull/21340/files#diff-28d941fe33e0f8217892e8096ba7152ba9ade67e3b2c3f0ce31a333d90cc339d --- nixos/modules/services/web-apps/keycloak.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/web-apps/keycloak.nix b/nixos/modules/services/web-apps/keycloak.nix index f7c7ea9ab1fb..b8dc9e2ef0dd 100644 --- a/nixos/modules/services/web-apps/keycloak.nix +++ b/nixos/modules/services/web-apps/keycloak.nix @@ -281,8 +281,8 @@ in options = { http-host = mkOption { type = str; - default = "0.0.0.0"; - example = "127.0.0.1"; + default = "::"; + example = "::1"; description = '' On which address Keycloak should accept new connections. '';