Compare commits
8 Commits
1ca530f337
...
0.8.1
Author | SHA1 | Date | |
---|---|---|---|
f72392d54c
|
|||
c24192b2b2
|
|||
caf82b43be
|
|||
ba3581fec2
|
|||
dabf804bb0
|
|||
473d4aa38c
|
|||
425a3d18e0
|
|||
4a33321f0e
|
@ -1,12 +1,13 @@
|
|||||||
namespace: finallycoffee
|
namespace: finallycoffee
|
||||||
name: nextcloud
|
name: nextcloud
|
||||||
version: "0.8.0"
|
version: "0.8.1"
|
||||||
readme: README.md
|
readme: README.md
|
||||||
authors:
|
authors:
|
||||||
- transcaffeine <transcaffeine@finally.coffee>
|
- transcaffeine <transcaffeine@finally.coffee>
|
||||||
description: Installing and configuring nextcloud (and related apps/services) using docker
|
description: Installing and configuring nextcloud (and related apps/services) using docker
|
||||||
dependencies:
|
dependencies:
|
||||||
"community.docker": "^4.0.0"
|
"community.general": "^10.0.0"
|
||||||
|
"community.docker": "^4.6.0"
|
||||||
license_file: LICENSE.md
|
license_file: LICENSE.md
|
||||||
build_ignore:
|
build_ignore:
|
||||||
- '*.tar.gz'
|
- '*.tar.gz'
|
||||||
|
@ -12,9 +12,12 @@ nc_ldap_config_keys:
|
|||||||
ldapBackupHost: "{{ nc_ldap_config_backup_host }}"
|
ldapBackupHost: "{{ nc_ldap_config_backup_host }}"
|
||||||
ldapBackupPort: "{{ nc_ldap_config_backup_port }}"
|
ldapBackupPort: "{{ nc_ldap_config_backup_port }}"
|
||||||
ldapOverrideMainServer: "{{ nc_ldap_config_override_main_server }}"
|
ldapOverrideMainServer: "{{ nc_ldap_config_override_main_server }}"
|
||||||
ldapBase: "{{ nc_ldap_config_base_dn }}"
|
ldapBase:
|
||||||
ldapBaseUsers: "{{ nc_ldap_config_base_dn_users }}"
|
- "{{ nc_ldap_config_base_dn }}"
|
||||||
ldapBaseGroups: "{{ nc_ldap_config_base_dn_groups }}"
|
ldapBaseUsers:
|
||||||
|
- "{{ nc_ldap_config_base_dn_users }}"
|
||||||
|
ldapBaseGroups:
|
||||||
|
- "{{ nc_ldap_config_base_dn_groups }}"
|
||||||
ldapAgentName: "{{ nc_ldap_config_agent_name }}"
|
ldapAgentName: "{{ nc_ldap_config_agent_name }}"
|
||||||
ldapAgentPassword: "{{ nc_ldap_config_agent_password }}"
|
ldapAgentPassword: "{{ nc_ldap_config_agent_password }}"
|
||||||
ldapTLS: "{{ nc_ldap_config_tls }}"
|
ldapTLS: "{{ nc_ldap_config_tls }}"
|
||||||
@ -30,8 +33,10 @@ nc_ldap_config_keys:
|
|||||||
ldapAttributesForUserSearch: "{{ nc_ldap_config_attributes_for_user_search }}"
|
ldapAttributesForUserSearch: "{{ nc_ldap_config_attributes_for_user_search }}"
|
||||||
ldapGroupFilter: "{{ nc_ldap_config_group_filter }}"
|
ldapGroupFilter: "{{ nc_ldap_config_group_filter }}"
|
||||||
ldapGroupFilterMode: "{{ nc_ldap_config_group_filter_mode }}"
|
ldapGroupFilterMode: "{{ nc_ldap_config_group_filter_mode }}"
|
||||||
ldapGroupFilterObjectclass: "{{ nc_ldap_config_group_filter_objectclass }}"
|
ldapGroupFilterObjectclass:
|
||||||
ldapGroupFilterGroups: "{{ nc_ldap_config_group_filter_groups }}"
|
- "{{ nc_ldap_config_group_filter_objectclass }}"
|
||||||
|
ldapGroupFilterGroups:
|
||||||
|
- "{{ nc_ldap_config_group_filter_groups }}"
|
||||||
ldapGroupMemberAssocAttr: "{{ nc_ldap_config_group_member_assoc_attr }}"
|
ldapGroupMemberAssocAttr: "{{ nc_ldap_config_group_member_assoc_attr }}"
|
||||||
ldapGroupDisplayName: "{{ nc_ldap_config_group_displayname }}"
|
ldapGroupDisplayName: "{{ nc_ldap_config_group_displayname }}"
|
||||||
ldapAttributesForGroupSearch: "{{ nc_ldap_config_attributes_for_group_search }}"
|
ldapAttributesForGroupSearch: "{{ nc_ldap_config_attributes_for_group_search }}"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
nextcloud_nginx_version: "1.27.4"
|
nextcloud_nginx_version: "1.28.0"
|
||||||
nextcloud_nginx_basepath: /opt/nextcloud-nginx
|
nextcloud_nginx_basepath: /opt/nextcloud-nginx
|
||||||
nextcloud_nginx_config: "{{ nextcloud_nginx_basepath }}/nextcloud.conf"
|
nextcloud_nginx_config: "{{ nextcloud_nginx_basepath }}/nextcloud.conf"
|
||||||
nextcloud_nginx_servernames: ~
|
nextcloud_nginx_servernames: ~
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
onlyoffice_documentserver_user: "onlyoffice"
|
onlyoffice_documentserver_user: "onlyoffice"
|
||||||
onlyoffice_documentserver_version: "8.3.2"
|
onlyoffice_documentserver_version: "8.3.3"
|
||||||
|
|
||||||
onlyoffice_documentserver_state: present
|
onlyoffice_documentserver_state: present
|
||||||
onlyoffice_documentserver_deployment_method: docker
|
onlyoffice_documentserver_deployment_method: docker
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
nextcloud_version: "31.0.3"
|
nextcloud_version: "31.0.6"
|
||||||
nextcloud_user: nextcloud
|
nextcloud_user: nextcloud
|
||||||
nextcloud_basepath: /opt/nextcloud
|
nextcloud_basepath: /opt/nextcloud
|
||||||
nextcloud_config_path: "{{ nextcloud_basepath }}/config"
|
nextcloud_config_path: "{{ nextcloud_basepath }}/config"
|
||||||
|
Reference in New Issue
Block a user