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; } }