Add Keycloak to the enabled services list and update its configuration to include the HTTP host setting

This commit is contained in:
Danilo Reyes
2025-12-10 02:51:58 -06:00
parent b912aa82fa
commit 3f40666ebf
2 changed files with 2 additions and 1 deletions

View File

@@ -76,11 +76,11 @@ in
"mealie" "mealie"
"metube" "metube"
"atticd" "atticd"
"keycloak"
] ]
// enableList mkEnabledIp [ // enableList mkEnabledIp [
"audiobookshelf" "audiobookshelf"
"vaultwarden" "vaultwarden"
"readeck" "readeck"
"keycloak"
]; ];
} }

View File

@@ -32,6 +32,7 @@ in
hostname-strict-https = false; hostname-strict-https = false;
http-enabled = true; http-enabled = true;
http-port = cfg.port; http-port = cfg.port;
http-host = cfg.ip;
proxy-headers = "xforwarded"; proxy-headers = "xforwarded";
}; };
}; };