(Using spring-cloud-starter-netflix-zuul 1.4.4)
I am trying to configure ribbon for my zuul routes, so when I go to http://host1:port1/restful-service/app1 it should route me to http://host2:port2/rest-example/app1.
It works properly when I define the route with "url" property, without using ribbon:
(Using spring-cloud-starter-netflix-zuul 1.4.4) I am trying to configure ribbon for my zuul routes, so when I go to http://host1:port1/restful-service/app1 it should route me to http://host2:port2/rest-example/app1. It works properly when I define the route with "url" property, without using ribbon:
But when I try to use ribbon, which looks like this:
It only allows me to route to http://host2:port2/rest-example but not to the chosen service directly http://host2:port2/rest-example/app1 (it returns 404 status code).