2023-05-29 13:03:57 +02:00
|
|
|
---
|
2024-01-19 15:12:18 +01:00
|
|
|
- name: "include docker/compose/database.yml"
|
|
|
|
include_tasks: docker/compose/database.yml
|
2024-01-02 21:13:34 +01:00
|
|
|
|
2024-01-08 11:20:44 +01:00
|
|
|
- name: "include tasks to receive attendize certbot certificate"
|
|
|
|
include_tasks: recieve-certbot-certificate.yml
|
|
|
|
vars:
|
|
|
|
domain: "{{ item }}"
|
|
|
|
loop:
|
|
|
|
- "{{ mail_interface_domain }}"
|
|
|
|
- "{{ domain }}"
|
|
|
|
|
2023-05-29 13:03:57 +02:00
|
|
|
- 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
|