From d568be98cc1434cc7a2758618e96fbae2ea2aaa5 Mon Sep 17 00:00:00 2001 From: Dries Augustyns Date: Tue, 23 Jul 2024 16:57:12 +0200 Subject: [PATCH] Added localhost instead of DNS --- deployment/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deployment/nginx.conf b/deployment/nginx.conf index a2cd7fa..aa285d9 100644 --- a/deployment/nginx.conf +++ b/deployment/nginx.conf @@ -7,7 +7,7 @@ http { listen 3000; location /api/ { - proxy_pass http://plunk:4000/; + proxy_pass http://127.0.0.1:4000/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; @@ -15,7 +15,7 @@ http { } location / { - proxy_pass http://plunk:5000; + proxy_pass http://127.0.0.1:5000; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;