ansible-role-nextcloud/handlers/main.yml

23 lines
351 B
YAML
Raw Normal View History

2020-12-03 15:52:14 +01:00
---
- name: reload apache
service:
name: apache2
state: reloaded
2020-12-03 23:14:27 +01:00
- name: restart apache
service:
2020-12-03 15:52:14 +01:00
name: apache2
state: restarted
- name: reload nginx
service:
name: nginx
state: reloaded
2021-05-10 22:35:51 +02:00
delegate_to: "{{ nextcloud_gateway }}"
2020-12-03 15:52:14 +01:00
- name: restart phpfpm
service:
name: "php{{ php_version }}-fpm"
state: restarted