Files
threetwo/proxy.conf

22 lines
324 B
Plaintext

server {
listen 8050;
location / {
proxy_pass http://localhost:8050;
}
}
server {
listen 3080;
location /comicvine-service {
proxy_pass http://localhost:3080;
}
}
server {
listen 3000;
location /import-service {
proxy_pass http://localhost:3000;
}
}