diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2020-05-12 15:36:28 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2020-05-12 15:39:12 +0200 |
commit | 0bfbe0e49f7fc77abfe7bb5d92c72dbdf6742204 (patch) | |
tree | df5032437194cbd1ff1c442fa1c5cc7fbb388015 /roles/nextcloud/handlers | |
parent | 61b5f01bde3159f40417fe9562b9979a0513e5ae (diff) |
Nextcloud: Better separation between code/data/logs/cache.
Also, update baseline to Debian 10 (codename Buster) and deploy a local
Redis instance for Transactional File Locking
https://docs.nextcloud.com/server/18/admin_manual/configuration_server/caching_configuration.html#id2
Diffstat (limited to 'roles/nextcloud/handlers')
-rw-r--r-- | roles/nextcloud/handlers/main.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/roles/nextcloud/handlers/main.yml b/roles/nextcloud/handlers/main.yml index 6552940..1e48524 100644 --- a/roles/nextcloud/handlers/main.yml +++ b/roles/nextcloud/handlers/main.yml @@ -1,6 +1,9 @@ --- -- name: Restart php7.0-fpm - service: name=php7.0-fpm state=restarted +- name: Restart php7.3-fpm + service: name=php7.3-fpm state=restarted + +- name: Restart Redis + service: name=redis-server state=restarted - name: Restart Nginx service: name=nginx state=restarted |