Last active
June 10, 2018 17:34
-
-
Save OmarElgabry/c5a927ba29e023ac2aa9d8ef2c7833f9 to your computer and use it in GitHub Desktop.
Eureka Server Configurations
This file contains hidden or 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
# Give a name to the eureka server | |
spring.application.name=eureka-server | |
# default port for eureka server | |
server.port=8761 | |
# eureka by default will register itself as a client. So, we need to set it to false. | |
# What's a client server? See other microservices (image, gallery, auth, etc). | |
eureka.client.register-with-eureka=false | |
eureka.client.fetch-registry=false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment