fix for error hopefully

This commit is contained in:
shreyasajj 2022-01-09 22:51:04 -06:00
parent 7b85f35e13
commit 55f6da7af2

View File

@ -63,21 +63,22 @@
- name: Generate Wsproxy proxying configuration for matrix-nginx-proxy - name: Generate Wsproxy proxying configuration for matrix-nginx-proxy
set_fact: set_fact:
matrix_mautrix_wsproxy_matrix_nginx_proxy_configuration: | matrix_mautrix_wsproxy_matrix_nginx_proxy_configuration: |
location ~ ^/(_matrix/client/unstable/fi.mau.syncproxy/*) { location ~ ^/(_matrix/client/unstable/fi.mau.syncproxy/.*) {
{% if matrix_nginx_proxy_enabled|default(False) %} {% if matrix_nginx_proxy_enabled|default(False) %}
{# Use the embedded DNS resolver in Docker containers to discover the service #} {# Use the embedded DNS resolver in Docker containers to discover the service #}
resolver 127.0.0.11 valid=5s; resolver 127.0.0.11 valid=5s;
set $backend "matrix-mautrix-wsproxy:{{ matrix_mautrix_wsproxy_port }}/$1"; set $backend "matrix-mautrix-wsproxy:{{ matrix_mautrix_wsproxy_port }}/$1";
proxy_pass http://$backend; proxy_pass http://$backend;
proxy_set_header Upgrade $http_upgrade; proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade"; proxy_set_header Connection "upgrade";
{% else %} {% else %}
{# Generic configuration for use outside of our container setup #} {# Generic configuration for use outside of our container setup #}
proxy_pass http://127.0.0.1:{{ matrix_mautrix_wsproxy_port }}/$1; proxy_pass http://127.0.0.1:{{ matrix_mautrix_wsproxy_port }}/$1;
proxy_set_header Upgrade $http_upgrade; proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade"; proxy_set_header Connection "upgrade";
{% endif %} {% endif %}
} }
when: matrix_mautrix_wsproxy_enabled|bool when: matrix_mautrix_wsproxy_enabled|bool
- name: Register Wsproxy's proxying configuration with matrix-nginx-proxy - name: Register Wsproxy's proxying configuration with matrix-nginx-proxy