mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
30 lines
908 B
YAML
30 lines
908 B
YAML
---
|
|
- 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
|
|
|
|
# @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
|
|
|
|
# @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
|