Add keycloak host
This commit is contained in:
parent
a16230d4a6
commit
5e7a118527
10 changed files with 180 additions and 0 deletions
15
config/hosts/keycloak/keycloak.nix
Normal file
15
config/hosts/keycloak/keycloak.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue