Is it possible to exclude paths or mappings from Zuul routing?
The goal is to
- All requests / contracts / ** are sent to contract.example.com
- All requests to / audit / ** are routed to audit.example.com
- All requests / heartbeat / ** or / sso / ** are submitted directly from zuul.
- All other requests (/ **) are sent to html.example.com
I have a configuration like this:
zuul: routes: contract: path: /contracts/** url: http:
Now the question is how to determine that / heartbeat and / sso are not routed to html.example.com zuul?
I am using Spring Boot and its auto configuration.
source share