1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- spring:
- boot:
- admin:
- url: http://192.168.1.135:9101
- rabbitmq:
- host: 192.168.1.210
- port: 5672
- username: guest
- password: guest
- redis:
- database: 0
- password: Cs123456
- host: 192.168.1.210
- port: 6379
- pool:
- max-wait: 30
- max-idle: 5
- cache:
- type: redis
- jwt:
- header: Authorization
- secret: arch6Secret
- expiration: 86400
- tokenHead: "Arch6WithCloud "
- jackson:
- serialization:
- INDENT_OUTPUT: true
- eureka:
- client:
- registry-fetch-interval-seconds: 10
- instance:
- lease-renewal-interval-in-seconds: 10
- lease-expiration-duration-in-seconds: 30
- prefer-ip-address: true
- instance-id: ${spring.cloud.client.ipAddress}:${server.port}
- management:
- health:
- rabbit:
- enabled: false
- binders:
- enabled: false
- security:
- enabled: false
- feign:
- hystrix:
- enabled: false
- compression:
- request:
- enabled: true
- mime-types: text/xml,application/xml,application/json
- min-request-size: 2048
- response:
- enabled: true
- httpclient:
- enabled: true
- hystrix:
- stream:
- queue:
- enabled: false
- command:
- default:
- execution:
- isolation:
- thread.timeoutInMilliseconds: 50000
- logging:
- config: classpath:logback-custom.xml
- logstash:
- host: 192.168.1.104:4560
|