From 09412e34ea9db07f00e614d0a99c6d880a935fcf Mon Sep 17 00:00:00 2001 From: Kim Brose Date: Thu, 31 Mar 2022 12:46:27 +0200 Subject: [PATCH] fix #1681 --- roles/matrix-bridge-hookshot/tasks/init.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/matrix-bridge-hookshot/tasks/init.yml b/roles/matrix-bridge-hookshot/tasks/init.yml index a0f9df978..baf47767d 100644 --- a/roles/matrix-bridge-hookshot/tasks/init.yml +++ b/roles/matrix-bridge-hookshot/tasks/init.yml @@ -68,7 +68,7 @@ {# Use the embedded DNS resolver in Docker containers to discover the service #} resolver 127.0.0.11 valid=5s; set $backend "{{ matrix_hookshot_container_url }}:{{ matrix_hookshot_webhook_port }}"; - proxy_pass http://$backend/$1$is_args$args; + proxy_pass http://$backend/webhook/$1$is_args$args; {% else %} {# Generic configuration for use outside of our container setup #} proxy_pass http://127.0.0.1:{{ matrix_hookshot_webhook_port }}/$1$is_args$args;