mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-28 18:30:24 +02:00
14 lines
494 B
YAML
14 lines
494 B
YAML
- name: "include role for {{domain}} to recieve certificates and do the modification routines"
|
|
include_role:
|
|
name: nginx-https-get-cert-modify-all
|
|
|
|
- name: "copy nginx domain configuration to {{ configuration_destination }}"
|
|
template:
|
|
src: "{{ vhost_template_src }}"
|
|
dest: "{{ configuration_destination }}"
|
|
notify: restart nginx
|
|
|
|
- name: "include the docker-oauth2-proxy role {{domain}}"
|
|
include_role:
|
|
name: docker-oauth2-proxy
|
|
when: final_oauth2_enabled | bool |