I'm using this configuration to nginx proxy reverso
location /backend {
rewrite ^/backend(.*)$ $1/ break;
proxy_pass http://credentials-web-bff.cl-milugar:5000;
proxy_redirect off;
}
and i don't have problem when Url like https://frontend/backend/mysite , but when the Url finish in "/" this rule didn't work.
can you guys help me ?