2022-04-10 16:07:18 -04:00

14 lines
258 B
YAML

---
- name: Enable Nextcloud site
ansible.builtin.shell: a2ensite nextcloud.conf
- name: Restart Apache
ansible.builtin.systemd:
name: httpd
state: restarted
- name: Restart nginx
ansible.builtin.systemd:
name: nginx
state: restarted