mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-18 14:34:24 +02:00
36 lines
1.2 KiB
YAML
36 lines
1.2 KiB
YAML
- name: "include role for {{domain}} to receive certificates and do the modification routines"
|
|
include_role:
|
|
name: srv-web-7-6-composer
|
|
|
|
- name: "Copy nginx config to {{ configuration_destination }}"
|
|
template:
|
|
src: "{{ vhost_template_src }}"
|
|
dest: "{{ configuration_destination }}"
|
|
register: nginx_conf
|
|
notify: restart nginx
|
|
|
|
- name: "Check if {{ domains | get_domain(application_id) }} is reachable (only if config unchanged)"
|
|
uri:
|
|
url: "{{ domains | get_url(application_id, web_protocol) }}"
|
|
register: site_check
|
|
failed_when: false
|
|
changed_when: false
|
|
when: not nginx_conf.changed
|
|
|
|
- name: Restart nginx if site is down
|
|
command:
|
|
cmd: "true"
|
|
notify: restart nginx
|
|
when:
|
|
- not nginx_conf.changed
|
|
- site_check.status is defined
|
|
- not site_check.status in [200,301,302]
|
|
|
|
- name: "set oauth2_proxy_application_id (Needed due to lazzy loading issue)"
|
|
set_fact:
|
|
oauth2_proxy_application_id: "{{ application_id }}"
|
|
when: applications | get_app_conf(application_id, 'features.oauth2', False)
|
|
|
|
- name: "include the web-app-oauth2-proxy role {{domain}}"
|
|
include_tasks: "{{ playbook_dir }}/roles/web-app-oauth2-proxy/tasks/main.yml"
|
|
when: applications | get_app_conf(application_id, 'features.oauth2', False) |