Hi. When configuring a proxy via the "context" feature, is there a way to strip the source path from the request URI before passing through to the backend?
For example, imagine the URI field is set to /api
A request for /api/whatever would be proxied to:
http://backend/whatever
*not*
http://backend/api/whatever
In Apache this would be achieved with a ProxyPass as follows:
ProxyPass /api/ http://backend/
Thanks!
Adam.
For example, imagine the URI field is set to /api
A request for /api/whatever would be proxied to:
http://backend/whatever
*not*
http://backend/api/whatever
In Apache this would be achieved with a ProxyPass as follows:
ProxyPass /api/ http://backend/
Thanks!
Adam.