1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- ##公共配置
- 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: false #启动监控检查
- serviceUrl:
- defaultZone: http://${eureka.server.ip}/eureka/
- instance:
- prefer-ip-address: false
- instance-id: ${spring.cloud.client.ipAddress}:${server.port} #定制化在eureka中显示的名称
- #leaseRenewalIntervalInSeconds: 30 #心跳时间 默认30秒 一般不修改
- #Actuator
- management:
- security:
- enabled: false
- #Hystrix
- hystrix:
- command:
- default:
- execution:
- isolation:
- thread:
- timeoutInMilliseconds: 305000
- #Ribbon
- ribbon:
- ReadTimeout: 300000
- ConnectTimeout: 5000
- #Zuul
- zuul:
- host:
- socket-timeout-millis: 300000
- connect-timeout-millis: 300000
- #Spring
- spring:
- jmx:
- enabled: false
- jpa:
- database-platform: org.hibernate.dialect.MySQL5Dialect
- hibernate.dialect: org.hibernate.dialect.MySQL5Dialect
- show-sql: false
- #未知
- yihu:
- admin:
- client:
- advice:
- http: true
- ---
- spring:
- profiles: jwdev
- eureka:
- server:
- ip: 172.19.103.33:8761
- #未知
- yihu:
- admin:
- client:
- advice:
- sql: false
- http: true
- server:
- ip: 127.0.0.1
- port: 8999
|