Using zuul, is it possible to configure routes to use parts from the path in the url?
This meta code config using normal regexp explains what I'd like to do.
zuul:
routes:
foobar:
path: /foo/{.*}/bar/{.*}
url: http://foobar/\2/\1
So /foo/123/bar/456 would be routed to http://foobar/456/123