From da043c63ae5a5539ea236513ccfd93e87b477f6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josu=C3=A9=20Tille?= Date: Wed, 18 Jan 2023 08:06:16 +0100 Subject: [PATCH] Fix issue #44 --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 4797701..3185cf7 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -6,7 +6,7 @@ location __PATH__/ { include uwsgi_params; # Needed for long running operations in admin interface - proxy_pass http://localhost:__PORT__/; + proxy_pass http://127.0.0.1:__PORT__/; proxy_set_header Host $host; proxy_set_header X-Forwarded-Proto $scheme; proxy_buffering off;