14 lines
258 B
YAML
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
|