application.yml 695 Bytes
Newer Older
1
server:
2
  port: 9999
3 4 5 6
  compression:
    enabled: true
    min-response-size: 1024
    mime-types: application/xml,application/json
7 8
spring:
  application:
9
    name: testclient
10
eureka:
Dave Syer committed
11 12
  server:
    enabled: false
13 14 15
  client:
    registerWithEureka: false
    fetchRegistry: false
16 17
#error:
#  path: /myerror
18 19
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds: 60000
ribbon:
20 21
  ConnectTimeout: 3001
  ReadTimeout: 60001
22 23 24 25
foo:
  ribbon:
    ConnectTimeout: 7
    ReadTimeout: 17
26 27 28 29
badClients:
  ribbon:
    MaxAutoRetriesNextServer: 10
    ReadTimeout: 200
30 31 32
endpoints:
  health:
    sensitive: false
33 34
hystrix:
  shareSecurityContext: true
35
management.endpoints.web.exposure.include: '*'