Source URL: / api / url% 2Fencoded% 2F /? with = queryParams
Nginx:
location /api { client_max_body_size 2G; proxy_pass https://oursite; }
With this configuration, I was able to save the URL encoding while going through the proxy. If I add "/" after "our site", it will decrypt the URL.
Problem:
Now the proxy URL still contains "/ api /". I need to remove "/ api /" only when saving parts encoded by URL.
source share