Fixes to enable Conduit in setup-all

This commit is contained in:
Charles Wright
2022-08-04 14:35:41 -05:00
parent 53cf0e18a4
commit 20767b5149
8 changed files with 140 additions and 3 deletions

View File

@ -80,6 +80,19 @@
state: absent
when: "not matrix_nginx_proxy_proxy_dendrite_enabled|bool"
- name: Ensure Matrix nginx-proxy configuration for matrix-conduit exists
template:
src: "{{ role_path }}/templates/nginx/conf.d/matrix-conduit.conf.j2"
dest: "{{ matrix_nginx_proxy_confd_path }}/matrix-conduit.conf"
mode: 0644
when: matrix_nginx_proxy_proxy_conduit_enabled|bool
- name: Ensure Matrix nginx-proxy configuration for matrix-conduit deleted
file:
path: "{{ matrix_nginx_proxy_confd_path }}/matrix-conduit.conf"
state: absent
when: "not matrix_nginx_proxy_proxy_conduit_enabled|bool"
- name: Ensure Matrix nginx-proxy configuration for Element domain exists
template:
src: "{{ role_path }}/templates/nginx/conf.d/matrix-client-element.conf.j2"