14 lines
547 B
YAML
Raw Normal View History

- name: "include role for {{domain}} to recieve certificates and do the modification routines"
include_role:
name: nginx-https-get-cert-modify-all
2025-02-19 03:20:34 +01:00
- name: "copy nginx domain configuration to {{configuration_destination}}"
template:
src: "roles/nginx-docker-reverse-proxy/templates/domain.conf.j2"
2025-02-19 03:20:34 +01:00
dest: "{{configuration_destination}}"
notify: restart nginx
- name: "include the docker-oauth2-proxy role {{domain}}"
2025-01-26 16:14:30 +01:00
include_role:
name: docker-oauth2-proxy
2025-02-19 13:46:45 +01:00
when: applications | get_oauth2_enabled(application_id)