From 8434cf8ba7170962ffdf753302f131eae54365db Mon Sep 17 00:00:00 2001 From: Ana Custura Date: Tue, 24 Mar 2026 12:44:03 +0000 Subject: [PATCH] Add fix from Fabby for the v6 upstream issue --- ansible/templates/nginx-config.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/templates/nginx-config.j2 b/ansible/templates/nginx-config.j2 index 846a1d9..5ef7794 100644 --- a/ansible/templates/nginx-config.j2 +++ b/ansible/templates/nginx-config.j2 @@ -12,11 +12,11 @@ server { } location ^~ /_matrix { - proxy_pass http://localhost:8008; + proxy_pass http://127.0.0.1:8008; } location / { - proxy_pass http://localhost:5000; + proxy_pass http://127.0.0.1:5000; } }