2022-04-10 17:14:42 -04:00

14 lines
260 B
YAML

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