I am completely new to zuul, but I am facing a challenge I can't seem to overcome due to some changes we made in the configuration.
Zuul is being used simply to re-write some urls in this case, nothing more. It works fine in all sorts of other environments and used to work in this one until we made these changes.
The zuul config looks something like this..
spring:
profiles: development
zuul:
routes:
fakebank:
path: /fake-bank/rest/projects/fakebank/**
url: https://dev-fakebank-api.fkebnk.com/office-365/rest
fakebank2:
path: /rest/projects/fakebank/**
url: https://dev-fakebank-api.fkebnk.com/office-365/res
However, when I visit the URL that is to be re-written, for example https://dev-api.fakebank.com/fake-bank/rest/projects/fake-bank/health-check
, I just keep getting the following error:
Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Thu Jun 23 17:48:24 UTC 2016
There was an unexpected error (type=Internal Server Error, status=500).
connect timed out
Does anyone have any idea or can point me in a good direction to start walking?
Thanks in advance.