2020-12-24 14:27:31 +01:00
|
|
|
---
|
|
|
|
- name: recieve {{domain}} certificate
|
|
|
|
command: certbot certonly --agree-tos --email {{administrator_email}} --non-interactive --webroot -w /var/lib/letsencrypt/ -d {{domain}}
|
|
|
|
|
|
|
|
- name: configure {{domain}}.conf
|
|
|
|
template: src=templates/nextcloud.conf.j2 dest=/etc/nginx/conf.d/{{domain}}.conf
|
|
|
|
notify: restart nginx
|
|
|
|
|
2021-10-18 18:46:58 +02:00
|
|
|
- name: "create /home/administrator/volumes/docker/nextcloud/"
|
2021-08-17 22:19:29 +02:00
|
|
|
file:
|
2021-10-18 18:46:58 +02:00
|
|
|
path: "/home/administrator/volumes/docker/nextcloud"
|
2021-08-17 22:19:29 +02:00
|
|
|
state: directory
|
|
|
|
mode: 0755
|
|
|
|
|
|
|
|
- name: configure nginx.conf
|
2021-10-18 18:46:58 +02:00
|
|
|
template: src=templates/nginx.conf.j2 dest=/home/administrator/volumes/docker/nextcloud/nginx.conf
|
2022-01-29 10:21:29 +01:00
|
|
|
notify: recreate nextcloud
|
2021-08-17 22:19:29 +02:00
|
|
|
|
2021-10-18 18:46:58 +02:00
|
|
|
- name: "create /home/administrator/docker-compose/nextcloud/"
|
2021-10-08 22:08:48 +02:00
|
|
|
file:
|
2021-10-18 18:46:58 +02:00
|
|
|
path: "/home/administrator/docker-compose/nextcloud/"
|
2021-10-08 22:08:48 +02:00
|
|
|
state: directory
|
|
|
|
mode: 0755
|
|
|
|
|
|
|
|
- name: add docker-compose.yml
|
2021-10-18 18:46:58 +02:00
|
|
|
template: src=docker-compose.yml.j2 dest=/home/administrator/docker-compose/nextcloud/docker-compose.yml
|
2021-10-08 22:08:48 +02:00
|
|
|
notify: recreate nextcloud
|