Reverse proxy for a specific path

What I can think of is a hack like this using rewrite.

external.address.com:80 {

    rewrite / /SpecificPath

    proxy /SpecificPath server:8083 {
        proxy_header Host {host}
    }

}
2 Likes