-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,16 @@ | ||
server.port = 9999 | ||
server.port = 9004 | ||
|
||
#Zuul routes. Here for /microservice-produits path, we are routing to localhost:8090 with extra path after that. | ||
zuul.routes.microservice-produits.url=http://localhost:8080 | ||
|
||
#Zuul routes. Here for /microservice-commandes path, we are routing to localhost:8081 with extra path after that. | ||
zuul.routes.microservice-commandes.url=http://localhost:8081 | ||
|
||
#Zuul routes. Here for /microservice-paiements path, we are routing to localhost:8082 with extra path after that. | ||
zuul.routes.microservice-paiements.url=http://localhost:8082 | ||
|
||
#Ribbon is auto integrated with Zuul and for this exercise we are not using that. | ||
ribbon.eureka.enabled=false | ||
|
||
eureka.client.serviceUrl.defaultZone=http://localhost:9102/eureka/ | ||
|