1.6.2 #20

Merged
meaz merged 3 commits from 1.6.2 into main 2023-07-11 20:37:19 +02:00
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
rcube_pkgs:
- 'mariadb-client'
rcube_release_dir_path: '/var/www/roundcube_releases'
rcube_version: '1.6.1'
rcube_version: '1.6.2'
rcube_latest_path: '/var/www/roundcube_production'
rcube_app_username: 'www-data'
rcube_app_group: 'www-data'
@ -78,7 +78,7 @@ nginx_vhosts:
template: 'roundcube'
proto: 'http'
listen: '80'
root: 'roundcube_latest'
root: '{{ rcube_latest_path }}'
index: 'index.php'
use_access_log: 'true'
use_error_log: 'true'

View File

@ -21,7 +21,7 @@
- name: "[INSTALL] - Copy content of the tarball to roundcube-latest"
copy:
src: "{{ rcube_release_dir_path }}/roundcubemail-{{ rcube_version }}/"
dest: "{{ rcube_latest_path }}"
dest: "{{ rcube_latest_path }}/"
remote_src: 'true'
owner: '{{ rcube_app_username }}'
group: '{{ rcube_app_group }}'