mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-01 06:44:16 +02:00
Solved s01ldap_base_users bug
This commit is contained in:
parent
9720fc1813
commit
0471eb5d4a
roles
@ -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));
|
||||
|
Loading…
x
Reference in New Issue
Block a user