Instantly visualize how Nginx rewrites your URIs when proxying. Eliminate 404s and configuration guesswork.
location /api/ {
proxy_pass http://backend/v1/;
}
Original URI
Resulting Backend Request
Logic: Since the proxy_pass directive contains a URI (/v1/), the matched location part (/api/) is replaced.