I've a proxy that forwards all requests to my target server and everything works well.
Now I want to add an extra endpoint to my proxy that is an alias of an existing one.
Let's say the original endpoint is
GET /my_original_endpoint?q=10
I want to expose an endpoint like
GET /my_alias_endpoint?q=10
that forward all request to /my_original_endpoint?q=10 but add a value in the query string. the request received by my target endpoint should be
GET /my_original_endpoint?q=10&f=20