bootstrap.properties 886 字节
Newer Older
夏天飘过的风's avatar
夏天飘过的风 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
# security
spring.security.user.name=roncoo
spring.security.user.password=123456

# info
info.eureka.host01=192.168.1.185
info.eureka.host02=192.168.1.185
info.eureka.port01=5761
info.eureka.port02=5762

# profile
spring.profiles.active=local

# eureka
eureka.client.serviceUrl.defaultZone=http://${spring.security.user.name}:${spring.security.user.password}@${info.eureka.host01}:${info.eureka.port01}/eureka/,http://${spring.security.user.name}:${spring.security.user.password}@${info.eureka.host02}:${info.eureka.port02}/eureka/

# server
server.port=5840

# application
spring.application.name=roncoo-education-gateway-api

# spring cloud config client
spring.cloud.config.profile=${spring.profiles.active}
spring.cloud.config.label=master
spring.cloud.config.discovery.enabled=true
spring.cloud.config.discovery.service-id=roncoo-education-server-config