mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
18 lines
811 B
YAML
18 lines
811 B
YAML
---
|
|
- name: "include docker-compose-common.yml"
|
|
include_tasks: docker-compose-common.yml
|
|
|
|
- name: receive {{ mail_interface_domain }} certificate
|
|
command: certbot certonly --agree-tos --email {{ administrator_email }} --non-interactive --webroot -w /var/lib/letsencrypt/ -d {{ mail_interface_domain }}
|
|
|
|
- name: receive {{ 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: roles/nginx-docker-reverse-proxy/templates/domain.conf.j2
|
|
dest: "{{nginx_servers_directory}}{{domain}}.conf"
|
|
notify: restart nginx
|
|
|
|
- name: "include tasks update-repository-with-docker-compose.yml"
|
|
include_tasks: update-repository-with-docker-compose.yml |