Add keycloak host

This commit is contained in:
fi 2024-01-19 12:15:00 +01:00
parent a16230d4a6
commit 5e7a118527
Signed by: fi
SSH key fingerprint: SHA256:d+6fQoDPMbSFK95zRVflRKZLRKF4cPSQb7VIxYkhFsA
10 changed files with 180 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ ... }:
{
services.keycloak = {
enable = true;
settings = {
hostname = "id.nekover.se";
hostname-admin = "keycloak-admin.nekover.se";
hostname-strict-backchannel = true;
proxy = "edge";
http-host = "127.0.0.1";
http-port = 8080;
};
database.passwordFile = "/secrets/keycloak-database-password.secret";
};
}