Nginx proxy_pass URI Visualizer

Instantly visualize how Nginx rewrites your URIs when proxying. Eliminate 404s and configuration guesswork.

Configuration

Resulting Config

location /api/ {
    proxy_pass http://backend/v1/;
}

Live Transformation

Original URI

/api/users/profile

Resulting Backend Request

http://backend/v1/users/profile

Logic: Since the proxy_pass directive contains a URI (/v1/), the matched location part (/api/) is replaced.