Skip to content

Instantly share code, notes, and snippets.

@OmarElgabry
Last active June 10, 2018 17:34
Show Gist options
  • Save OmarElgabry/c5a927ba29e023ac2aa9d8ef2c7833f9 to your computer and use it in GitHub Desktop.
Save OmarElgabry/c5a927ba29e023ac2aa9d8ef2c7833f9 to your computer and use it in GitHub Desktop.
Eureka Server Configurations
# 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