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