Scenario:
- I have fabio set up to listen to
http://fabioserver/
- I have a route configured for a service, with prefix
/myservice
When making a request to http://fabioserver/myservice/index.html, the service currently receives the forwarded request from fabio to /myservice/index.html
I would like to have the option to strip the prefix in fabio, so that the service would receive a request to /index.html
I currently have a homemade go proxy that does that, using http.StripPrefix. I may have the time to prepare a PR for this at some point, but no promises...
Scenario:
http://fabioserver//myserviceWhen making a request to
http://fabioserver/myservice/index.html, the service currently receives the forwarded request from fabio to/myservice/index.htmlI would like to have the option to strip the prefix in fabio, so that the service would receive a request to
/index.htmlI currently have a homemade go proxy that does that, using
http.StripPrefix. I may have the time to prepare a PR for this at some point, but no promises...