This commit is contained in:
Lucy Hochkamp 2023-12-10 13:16:29 +01:00
parent 0cae64a938
commit 403554015a
No known key found for this signature in database
7 changed files with 10 additions and 10 deletions

View file

@ -50,7 +50,7 @@ in
host = "/run/postgresql";
port = "5432";
database = "authelia";
username = "authelia-main";
username = "authelia";
password = "dosentmatter";
};
};
@ -68,8 +68,8 @@ in
ensureDatabases = [ "authelia" ];
ensureUsers = [
{
name = "authelia-main";
ensurePermissions."DATABASE authelia" = "ALL PRIVILEGES";
name = "authelia";
ensureDBOwnership = true;
}
];
};