-
Notifications
You must be signed in to change notification settings - Fork 619
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Path problem #124
Milestone
Comments
You have two options:
|
Also, path stripping is not implemented right now. See #44 So if the external URL is |
ok, thank you. It's clearer. |
Duplicate of #44 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I have a use case I cannot resolve with fabio:
I have 2 services "Jack" and "John". Jack has two routes /api/dosomething and /api/dootherthing
John has one route /api/hellojohn
John and Jack are deployed through Docker on the same host and registrator registers them into consul. But I have a path problem : John and Jack are using the same prefix (/api). How can I register them into consul.
I tried to tag them with urlprefix-jack/ and urlprefix-john/ but when I call http://fabio-proxy:9999/john/api/hellojohn I have a 404 error.
I need that http://fabio-proxy:9999/**john**/api/\* will be redirected to http://docker-host:1234/api/*
and http://fabio-proxy:9999/**jack**/api/\* to http://docker-host:5678/api/*
thank you for your help
The text was updated successfully, but these errors were encountered: