nixos/keycloak: Enable Dual-Stack by default. (#360845)

This commit is contained in:
Nick Cao
2024-12-02 14:24:20 -05:00
committed by GitHub
+2 -2
View File
@@ -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.
'';