From e878daa11493cc854f467e8f9700b3f774a06bf8 Mon Sep 17 00:00:00 2001 From: Rishi Ghan Date: Thu, 14 Oct 2021 17:00:52 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=A6=20Fixed=20hostnames=20for=20docker?= =?UTF-8?q?-compose?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- proxy.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/proxy.conf b/proxy.conf index db0581b..de4af9e 100644 --- a/proxy.conf +++ b/proxy.conf @@ -1,7 +1,7 @@ server { listen 8050; location / { - proxy_pass http://host.docker.internal:8050; + proxy_pass http://localhost:8050; } } @@ -9,7 +9,7 @@ server { listen 3080; location /comicvine-service { - proxy_pass http://host.docker.internal:3080; + proxy_pass http://localhost:3080; } } @@ -17,6 +17,6 @@ server { listen 3000; location /import-service { - proxy_pass http://host.docker.internal:3000; + proxy_pass http://localhost:3000; } } \ No newline at end of file