asdsad
All checks were successful
Deploy / deploy-staging (push) Successful in 52s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-06-10 22:44:28 +02:00
parent a8f4a4b36a
commit cd5525ff2e
20 changed files with 1951 additions and 351 deletions

25
config/registration.php Normal file
View File

@@ -0,0 +1,25 @@
<?php
declare(strict_types=1);
return [
'enabled' => true,
'storage_path' => 'data/registration-requests.json',
'ldif_export_dir' => 'data/registration-ldif',
'approver_groups' => ['administrators', 'appadmin'],
'approver_usernames' => [],
'ldap' => [
'users_dn' => 'cn=users,dc=nas,dc=kusche,dc=berlin',
'default_groups' => [
'cn=generaluser,cn=groups,dc=nas,dc=kusche,dc=berlin',
],
'default_login_shell' => '/bin/sh',
'home_directory_prefix' => '/home',
'shadow_expire' => 1,
'shadow_flag' => 0,
'shadow_inactive' => 0,
'shadow_max' => 99999,
'shadow_min' => 0,
'shadow_warning' => 7,
],
];