Skip to content

Commit

Permalink
eureka server는 config server에 의해 구성정보가 관리되지 않습니다
Browse files Browse the repository at this point in the history
  • Loading branch information
esperar committed Jan 15, 2024
1 parent 1df7671 commit e03effe
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 16 deletions.
28 changes: 21 additions & 7 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,25 @@
server:
port: 8761

spring:
application:
name: eureka-service

name: eureka-server
boot:
admin:
context-path: /admin
server:
port: 8761
eureka:
instance:
hostname: eurekaserver
client:
register-with-eureka: false
fetch-registry: false
registerWithEureka: false
fetchRegistry: false
serviceUrl:
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
server:
waitTimeInMsWhenSyncEmpty: 5


management:
endpoints:
web:
exposure:
include: "*"
9 changes: 0 additions & 9 deletions src/main/resources/bootstrap.yml

This file was deleted.

0 comments on commit e03effe

Please sign in to comment.