🐳 Docker configuration change

This commit is contained in:
2021-08-31 09:32:59 -07:00
parent 5141d387b7
commit 632b2dc267
10 changed files with 142 additions and 528 deletions

16
proxy.conf Normal file
View File

@@ -0,0 +1,16 @@
server {
listen 8050;
location / {
proxy_pass http://host.docker.internal:8050;
}
location /import-service {
proxy_pass http://host.docker.internal:3000;
}
location /comicvine-service {
proxy_pass http://host.docker.internal:3080;
}
}