Files
threetwo/proxy.conf
2021-08-31 09:32:59 -07:00

16 lines
300 B
Plaintext

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;
}
}