Solved s01ldap_base_users bug

This commit is contained in:
Kevin Veen-Birkenbach 2025-02-26 17:47:16 +01:00
parent 9720fc1813
commit 0471eb5d4a
3 changed files with 11 additions and 1 deletions
roles
docker-nextcloud
nginx-modifier-css/templates

@ -150,6 +150,12 @@ docker compose exec -u www-data application /var/www/html/occ config:app:get soc
More information: https://docs.nextcloud.com/server/latest/admin_manual/configuration_user/user_auth_ldap.html
## Get all relevant entries except password
```sql
SELECT * FROM `oc_appconfig` WHERE appid LIKE "%ldap%" and configkey != "s01ldap_agent_password";
```
## Federation
If users are just created via Keycloak and not via LDAP, they have a different username. Due to this reaso concider to use LDAP to guaranty that the username is valid.

@ -42,7 +42,7 @@ nextcloud_ldap_configuration:
-
appid: "user_ldap"
configkey: "s01ldap_base_users"
configvalue: "{{ldap.dn.root}}}"
configvalue: "{{ldap.dn.root}}"
-
appid: "user_ldap"

@ -1107,6 +1107,10 @@ input.ng-empty::placeholder,.ng-empty::placeholder {
color: var(--color-03);
}
.kanban-filter tg-filter {
border-color: var(--color-70);
}
/* Portfolio */
.card-img-top i {
filter: drop-shadow(4px 4px 4px rgba(var(--color-rgb-23), 0.6));