You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
537 B
23 lines
537 B
5 years ago
|
server:
|
||
|
port: 8121
|
||
|
#注册中心
|
||
|
eureka:
|
||
|
client:
|
||
|
service-url:
|
||
|
defaultZone: http://eureka:8001/eureka/
|
||
|
instance:
|
||
|
prefer-ip-address: true
|
||
|
instance-id: ${spring.cloud.client.ip-address}:${server.port}
|
||
|
hostname: ${spring.cloud.client.ip-address}
|
||
|
spring:
|
||
|
cloud:
|
||
|
#配置中心
|
||
|
config:
|
||
|
discovery:
|
||
|
service-id: dapp-config-server
|
||
|
enabled: true
|
||
|
profile: dev
|
||
|
name: springconf,springcloudconf,txconf,xssconf,dbconf,redisconf,ipconf
|
||
|
application:
|
||
|
name: dapp-sysconf-server
|