computer-playbook/roles/docker-nextcloud/tasks/main.yml

30 lines
908 B
YAML
Raw Normal View History

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-08 22:08:48 +02:00
# @todo rename
- name: "create /usr/local/bin/docker-nextcloud/"
file:
path: "/usr/local/bin/docker-nextcloud"
state: directory
mode: 0755
- name: configure nginx.conf
template: src=templates/nginx.conf.j2 dest=/usr/local/bin/docker-nextcloud/nginx.conf
notify: restart nginx
2021-10-08 22:08:48 +02:00
# @todo rename
- name: "create /usr/local/bin/nextcloud/"
file:
path: "/usr/local/bin/nextcloud"
state: directory
mode: 0755
- name: add docker-compose.yml
template: src=docker-compose.yml.j2 dest=/usr/local/bin/nextcloud/docker-compose.yml
notify: recreate nextcloud