From e58715b79d215e7678085a4084552825c609b0be Mon Sep 17 00:00:00 2001 From: JokerGermany <30293477+JokerGermany@users.noreply.github.com> Date: Mon, 19 Jul 2021 04:24:58 +0200 Subject: [PATCH] Bug - docker resolver is used when matrix_nginx_proxy_enabled is fals --- .../templates/nginx/conf.d/nginx-http.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/matrix-nginx-proxy/templates/nginx/conf.d/nginx-http.conf.j2 b/roles/matrix-nginx-proxy/templates/nginx/conf.d/nginx-http.conf.j2 index beea6afa1..6b4ea1a6b 100644 --- a/roles/matrix-nginx-proxy/templates/nginx/conf.d/nginx-http.conf.j2 +++ b/roles/matrix-nginx-proxy/templates/nginx/conf.d/nginx-http.conf.j2 @@ -5,7 +5,7 @@ # Thus, we ensure a larger bucket size value is used. server_names_hash_bucket_size 64; -{% if matrix_nginx_proxy_http_level_resolver %} +{% if matrix_nginx_proxy_enabled %} resolver {{ matrix_nginx_proxy_http_level_resolver }}; {% endif %}