diff --git a/nginx.conf b/nginx.conf index 62a4622..851ee08 100644 --- a/nginx.conf +++ b/nginx.conf @@ -92,6 +92,14 @@ server { proxy_set_header X-Forwarded-Proto $scheme; } + location /music/ { + proxy_pass http://host.docker.internal:4000/; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + location /home-api/ { proxy_pass http://host.docker.internal:8081/; }