gerd.lldap: renamed user-pass to admin-user-pass and added bind-user-pass
This commit is contained in:
parent
3c808fa3a7
commit
17fb88a8b4
6 changed files with 16 additions and 7 deletions
|
@ -91,6 +91,7 @@ in {
|
|||
authelia-storage.owner = "authelia-main";
|
||||
authelia-session.owner = "authelia-main";
|
||||
authelia-oidc-issuer-privatekey-pem.owner = "authelia-main";
|
||||
authelia-lldap-bind-user-pass.owner = "authelia-main";
|
||||
};
|
||||
|
||||
users.groups."${config.age.secrets.lldap-bind-user-pass.group}".members = [ config.users.users.authelia-main.name ];
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
environment = {
|
||||
# always set admin password on startup
|
||||
LLDAP_LDAP_USER_PASS_FILE = config.age.secrets.lldap-user-pass.path;
|
||||
LLDAP_LDAP_USER_PASS_FILE = config.age.secrets.lldap-admin-user-pass.path;
|
||||
# only available on the newest master branch, will be enabled when a
|
||||
# new version is released.
|
||||
# https://github.com/lldap/lldap/issues/790
|
||||
|
@ -35,6 +35,6 @@
|
|||
users.users.lldap = { group = "lldap"; isSystemUser = true; };
|
||||
users.groups.lldap = {};
|
||||
age.secrets = {
|
||||
lldap-user-pass.owner = "lldap";
|
||||
lldap-admin-user-pass.owner = "lldap";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
{ config, ... }:
|
||||
|
||||
{
|
||||
age.secrets = {
|
||||
# authelia
|
||||
|
@ -6,13 +8,19 @@
|
|||
authelia-session.file = ./authelia/session.age;
|
||||
authelia-oidc-issuer-privatekey-pem.file = ./authelia/oidc-issuer-privatekey-pem.age;
|
||||
authelia-oidc-issuer-privatekey-crt.file = ./authelia/oidc-issuer-privatekey-crt.age;
|
||||
authelia-lldap-bind-user-pass.file = ./authelia/lldap-bind-user-pass.age;
|
||||
|
||||
# lldap
|
||||
lldap-user-pass.file = ./lldap/user-pass.age;
|
||||
lldap-admin-user-pass.file = ./lldap/admin-user-pass.age;
|
||||
lldap-bind-user-pass = {
|
||||
file = ./lldap/bind-user-pass.age;
|
||||
group = "secrets-lldap-bind-user-pass";
|
||||
mode = "0440";
|
||||
};
|
||||
|
||||
# mumble
|
||||
murmur-env.file = ./murmur/env.age;
|
||||
murmur-superpassword.file = ./murmur/superpassword.age;
|
||||
};
|
||||
|
||||
users.groups.secrets-lldap-bind-user-pass = {};
|
||||
}
|
||||
|
|
|
@ -16,10 +16,10 @@ in
|
|||
"authelia/session.age".publicKeys = defaultAccess;
|
||||
"authelia/oidc-issuer-privatekey-pem.age".publicKeys = defaultAccess;
|
||||
"authelia/oidc-issuer-privatekey-crt.age".publicKeys = defaultAccess;
|
||||
"authelia/lldap-bind-user-pass.age".publicKeys = defaultAccess;
|
||||
|
||||
# lldap
|
||||
"lldap/user-pass.age".publicKeys = defaultAccess;
|
||||
"lldap/admin-user-pass.age".publicKeys = defaultAccess;
|
||||
"lldap/bind-user-pass.age".publicKeys = defaultAccess;
|
||||
|
||||
# mumble
|
||||
"murmur/env.age".publicKeys = defaultAccess;
|
||||
|
|
Loading…
Reference in a new issue