I have a netflix oss stack running on a linux box. this stack has Eureka, and a bunch of microservices (hello services) installed, all running in individual docker containers.
It was installed using Maven and Spring Boot.
My question is: How can I add Zuul to this stack? I've found some things on the net but they install Eureka too, and I'm affarid to overwrite the current Eureka if I run this.
You need to add the
@EnableZuulProxy
annotation to the main classand in the application.yml file add the routes with the names of your eureka-microservices
By default zuul runs on port 8500.
The maven dependency