2023-05-29 13:03:57 +02:00
|
|
|
---
|
2024-01-02 21:13:34 +01:00
|
|
|
- name: include docker vars
|
|
|
|
include_vars: vars/docker-database-service.yml.j2
|
|
|
|
|
|
|
|
- name: create central database
|
|
|
|
include_role:
|
|
|
|
name: docker-{{database_type}}
|
|
|
|
when: enable_central_database | bool
|
|
|
|
|
2023-05-29 13:03:57 +02:00
|
|
|
- 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:
|
2023-11-18 20:02:55 +01:00
|
|
|
src: roles/nginx-docker-reverse-proxy/templates/domain.conf.j2
|
2023-12-12 12:32:35 +01:00
|
|
|
dest: "{{nginx_servers_directory}}{{domain}}.conf"
|
2023-05-29 13:03:57 +02:00
|
|
|
notify: restart nginx
|
|
|
|
|
2023-12-30 15:22:18 +01:00
|
|
|
- name: "include tasks update-repository-with-docker-compose.yml"
|
|
|
|
include_tasks: update-repository-with-docker-compose.yml
|