mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 11:42:08 +00:00
12 lines
476 B
YAML
12 lines
476 B
YAML
- name: Enable http://box{{ nextcloud_url }} via Apache # http://box/nextcloud
|
|
command: a2ensite nextcloud.conf
|
|
when: nextcloud_enabled
|
|
|
|
- name: Disable http://box{{ nextcloud_url }} via Apache # http://box/nextcloud
|
|
command: a2dissite nextcloud.conf
|
|
when: not nextcloud_enabled
|
|
|
|
- name: Restart '{{ apache_service }}' systemd service
|
|
systemd:
|
|
name: "{{ apache_service }}" # apache2 or httpd, as set in /opt/iiab/iiab/vars/<OS>.yml
|
|
state: restarted
|