123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- spring:
- 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
- boot:
- admin:
- client:
- service-base-url: http://localhost:9101
- cloud:
- inetutils:
- ignored:
- interfaces[0]: spring
- 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:
- command:
- default:
- execution:
- timeout:
- enabled: false
- isolation:
- thread:
- timeoutInMilliseconds: 60000
- logging:
- config: classpath:logback-custom.xml
- logstash:
- host: 192.168.1.104:4560
- gofastdfs:
- url: http://192.168.1.210:8091/upload
- hadoop:
- hdfs: hdfs://192.168.1.135:9000
- server:
- undertow:
- accesslog:
- enabled: false
- pattern: common
|