Nginx not forwarding URL child elements of location to proxy inside docker container
I have the following nginx config: server { listen 443 ssl http2; listen [::]:443 ssl http2; server_name ce.mysite.com; location /api/ { resolver 127.0.0.11 valid=30s; set $api ce-api; proxy_pass http://$api:3100/; } } On the oter end of ce-api (docker container), I…