mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-15 16:40:45 +02:00
14 lines
443 B
YAML
14 lines
443 B
YAML
- block:
|
|
- name: create nginx letsencrypt config file
|
|
template:
|
|
src: "letsencrypt.conf.j2"
|
|
dest: "{{nginx.directories.http.global}}letsencrypt.conf"
|
|
notify: restart openresty
|
|
|
|
- name: "Set CAA records for all base domains"
|
|
include_tasks: 01_set-caa-records.yml
|
|
when: dns_provider == 'cloudflare'
|
|
|
|
- include_tasks: utils/run_once.yml
|
|
when: run_once_srv_web_7_7_letsencrypt is not defined
|