From 84e2a10d1ba02bec8e07e57deda6e6f62c2f6541 Mon Sep 17 00:00:00 2001 From: Rishi Ghan Date: Mon, 18 Oct 2021 15:46:33 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Tweak?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- proxy.conf | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/proxy.conf b/proxy.conf index de4af9e..e0fb836 100644 --- a/proxy.conf +++ b/proxy.conf @@ -1,22 +1,30 @@ server { - listen 8050; + listen 0.0.0.0:8050; location / { - proxy_pass http://localhost:8050; + proxy_pass http://0.0.0.0:8050; } } server { - listen 3080; + listen 0.0.0.0:8051; location /comicvine-service { - proxy_pass http://localhost:3080; + proxy_pass http://0.0.0.0:8051; } } server { - listen 3000; + listen 0.0.0.0:3080; + + location /comicvine-service { + proxy_pass http://0.0.0.0:3080; + } +} + +server { + listen 0.0.0.0:3000; location /import-service { - proxy_pass http://localhost:3000; + proxy_pass http://0.0.0.0:3000; } } \ No newline at end of file