mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-02-23 04:49:40 +01:00
25 lines
717 B
YAML
25 lines
717 B
YAML
---
|
|
- name: "include docker-central-database"
|
|
include_role:
|
|
name: docker-central-database
|
|
|
|
- name: "include tasks to receive attendize certbot certificate"
|
|
include_role:
|
|
name: nginx-https-recieve-certificate
|
|
vars:
|
|
domain: "{{ item }}"
|
|
loop:
|
|
- "{{ domains.mailu }}"
|
|
- "{{ domain }}"
|
|
|
|
- name: configure {{domains[application_id]}}.conf
|
|
template:
|
|
src: roles/nginx-docker-reverse-proxy/templates/domain.conf.j2
|
|
dest: "{{nginx.directories.http.servers}}{{domains[application_id]}}.conf"
|
|
notify: restart nginx
|
|
|
|
- name: "include tasks update-repository-with-files.yml"
|
|
include_tasks: update-repository-with-files.yml
|
|
vars:
|
|
detached_files:
|
|
- "docker-compose.yml" |