mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
Added LDAP integration for Nextcloud and optimized CSS
This commit is contained in:
@@ -1,6 +1,16 @@
|
||||
# @See https://docs.nextcloud.com/server/latest/admin_manual/configuration_user/user_auth_ldap.html
|
||||
# @See https://chatgpt.com/c/67aa2d21-cb4c-800f-b1be-8629b6bd3f55
|
||||
# @todo implement
|
||||
#docker compose exec -u www-data application php occ app:enable user_ldap
|
||||
|
||||
occ config:app:set user_ldap installed_version --value "1.21.0"
|
||||
- name: Activate Nextcloud LDAP App
|
||||
command: "docker exec -u www-data {{ nextcloud_application_container_name }} php occ app:enable user_ldap"
|
||||
|
||||
- name: Load LDAP Nextcloud configuration variables
|
||||
include_vars:
|
||||
file: ldap.yml
|
||||
|
||||
- name: Set Nextcloud LDAP config
|
||||
loop: "{{ nextcloud_ldap_configuration }}"
|
||||
command: >
|
||||
docker exec -u www-data {{ nextcloud_application_container_name }}
|
||||
php occ config:app:set {{ item.appid }} {{ item.configkey }} --value "{{ item.configvalue }}"
|
||||
|
Reference in New Issue
Block a user