core-services: use jre8 for keycloak, fixes LDAP federation
This commit is contained in:
parent
d8a577b078
commit
f3f4431f2c
1 changed files with 4 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ config, ... }:
|
{ config, pkgs, ... }:
|
||||||
let
|
let
|
||||||
my = config.my;
|
my = config.my;
|
||||||
port = 8080;
|
port = 8080;
|
||||||
|
@ -6,6 +6,9 @@ in
|
||||||
{
|
{
|
||||||
services.keycloak = {
|
services.keycloak = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
package = pkgs.keycloak.override {
|
||||||
|
jre = pkgs.jre8;
|
||||||
|
};
|
||||||
initialAdminPassword = "changemeasap";
|
initialAdminPassword = "changemeasap";
|
||||||
database.createLocally = true;
|
database.createLocally = true;
|
||||||
database.passwordFile = config.age.secrets.keycloakDatabasePasswordFile.path;
|
database.passwordFile = config.age.secrets.keycloakDatabasePasswordFile.path;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue