Updated README.md of nextcloud

This commit is contained in:
Kevin Veen-Birkenbach 2025-02-24 16:30:08 +01:00
parent aa591de3e5
commit 5b9553d042

View File

@ -93,8 +93,19 @@ To use OCC, run:
docker-compose exec -it -u www-data application /var/www/html/occ
```
### Make user admin via cli
```bash
docker compose exec -it -u www-data application php occ group:adduser admin {{username}}
```
### Delete user via CLI
```bash
docker compose exec -it -u www-data application php occ user:delete {{username}}
```
---
## App Relevant Tables 🗃️
- `oc_appconfig`
@ -130,6 +141,10 @@ 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
## 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.
---
## Further Information