You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am very excited about your project and was looking forward to integrating reverse_proxy_plug into my work project. During the integration process, I noticed that the plug seems to lack support for path parameters in the upstream URL. Specifically, path variables are not replaced with their corresponding values, leading to incorrect request routing.
Code Example: forward "/users/:userId", to: ReverseProxyPlug, upstream: "https://example.com/users/:userId"
In this example, I expected :userId to be replaced by the actual user ID from the request, but this substitution does not occur.
I am very excited about your project and was looking forward to integrating reverse_proxy_plug into my work project. During the integration process, I noticed that the plug seems to lack support for path parameters in the upstream URL. Specifically, path variables are not replaced with their corresponding values, leading to incorrect request routing.
Code Example:
forward "/users/:userId", to: ReverseProxyPlug, upstream: "https://example.com/users/:userId"
In this example, I expected :userId to be replaced by the actual user ID from the request, but this substitution does not occur.
Here is the solution to this issue
#174
The text was updated successfully, but these errors were encountered: