mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
14 lines
413 B
YAML
14 lines
413 B
YAML
---
|
|
- name: "include task receive certbot certificate"
|
|
include_tasks: recieve-certbot-certificate.yml
|
|
vars:
|
|
domain: "{{ domain }}"
|
|
|
|
- name: configure nginx redirect configurations
|
|
vars:
|
|
domain: "{{item.source}}"
|
|
target_domain: "{{item.target}}"
|
|
template: src=redirect.domain.nginx.conf.j2 dest={{nginx_servers_directory}}{{ domain }}.conf
|
|
loop: "{{domain_mappings}}"
|
|
notify: restart nginx
|