🐳 Added import service config

This commit is contained in:
2021-08-31 12:48:37 -07:00
parent 632b2dc267
commit b3799edcc6
5 changed files with 89 additions and 13 deletions

View File

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