mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-12-07 09:56:41 +00:00
10 lines
342 B
YAML
10 lines
342 B
YAML
- name: "include task receive certbot certificate"
|
|
include_role:
|
|
name: sys-svc-certs
|
|
when: SSL_ENABLED | bool
|
|
|
|
- name: "Deploying NGINX redirect configuration for '{{ domain }}'"
|
|
template:
|
|
src: redirect-domain.conf.j2
|
|
dest: "{{ [ NGINX.DIRECTORIES.HTTP.SERVERS, domain ~ '.conf'] | path_join }}"
|
|
notify: restart openresty |