✨: introduce webapps playbook to handle web php applications
This commit is contained in:
15
roles/roundcube/vars/main.yml
Normal file
15
roles/roundcube/vars/main.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
---
|
||||
|
||||
roundcube_version: "1.6.10"
|
||||
roundcube_url: "https://github.com/roundcube/roundcubemail/releases/download/{{ roundcube_version }}/roundcubemail-{{ roundcube_version }}-complete.tar.gz"
|
||||
|
||||
# calculate the roundcube access URL given the `web_hostname` list
|
||||
# only the first occurence is supported
|
||||
roundcube_access_url: "{{ web_hostname | selectattr('type', 'defined') | selectattr('type', '==', 'roundcube') | map(attribute='host') | first }}"
|
||||
|
||||
roundcube_local_path: "/srv/http/{{ roundcube_access_url }}"
|
||||
roundcube_config_path: "{{ roundcube_local_path }}/config/config.inc.php"
|
||||
|
||||
roundcube_carddav_version: "5.1.0"
|
||||
roundcube_carddav_url: "https://github.com/mstilkerich/rcmcarddav/releases/download/v{{ roundcube_carddav_version }}/carddav-v{{ roundcube_carddav_version }}.tar.gz"
|
||||
roundcube_carddav_discovery_url: "{{ web_hostname | selectattr('type', 'defined') | selectattr('type', '==', 'nextcloud') | map(attribute='host') | first }}"
|
Reference in New Issue
Block a user