123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- ##公共配置
- server:
- svr-dashboard-port: 9010
- web-gateway-port: 8088
- svr-base-port: 10020
- svr-wlyy-port: 10090
- svr-quota-port: 10030
- svr-logServer-port: 9411
- svr-iot-port: 10050
- context-path:
- svr-dashboard-context-path: /
- svr-web-gateway-context-path: /
- svr-base-context-path: /
- svr-wlyy-context-path: /
- svr-quota-context-path: /
- svr-logServer-context-path: /
- svr-configurations-context-path: /
- svr-iot-context-path: /
- #发现服务
- eureka:
- client:
- healthcheck:
- enabled: true #启动监控检查
- instance:
- #eurika使用IP不使用host
- prefer-ip-address: true
- #定制化在eurika中显示的名称
- ##instance-id: ${spring.application.name}:${spring.application.instance_id:${server.port}}
- instance-id: ${spring.cloud.client.ipAddress}:${server.port}
- leaseRenewalIntervalInSeconds: 30 ##心跳时间 默认30秒 一般不修改
- yihu:
- admin:
- client:
- advice:
- http: true
- management:
- security:
- enabled: false
- endpoints:
- logfile:
- enabled: true
- ---
- spring:
- profiles: jwdev
- yihu:
- admin:
- client:
- advice:
- sql: false
- http: true
- server:
- ip: 127.0.0.1
- port: 8999
- ---
- spring:
- profiles: jwtest
- yihu:
- admin:
- client:
- advice:
- sql: false
- http: true
- server:
- ip: 127.0.0.1
- port: 8999
- ---
- spring:
- profiles: jwprod
- yihu:
- admin:
- client:
- advice:
- sql: false
- http: true
- server:
- ip: 127.0.0.1
- port: 8999
|