Add fix from Fabby for the v6 upstream issue

Closes #8
This commit is contained in:
Ana Custura 2026-03-24 12:44:03 +00:00
parent c22e6ed557
commit bdddd161cd

View file

@ -12,11 +12,11 @@ server {
} }
location ^~ /_matrix { location ^~ /_matrix {
proxy_pass http://localhost:8008; proxy_pass http://127.0.0.1:8008;
} }
location / { location / {
proxy_pass http://localhost:5000; proxy_pass http://127.0.0.1:5000;
} }
} }