12345678910111213141516171819202122232425262728293031323334353637383940 |
- spring:
- application:
- name: api-gateway
- zuul:
- ignored-services: "*"
- prefix: /api
- routes:
- icd-search:
- path: /icd/**
- url: "http://${URL}"
- strip-prefix: false
- hystrix:
- command:
- ignored-services:
- execution:
- isolation:
- strategy: THREAD
- thread:
- timeoutInMilliseconds: 61000
- ribbon:
- MaxAutoRetries: 3
- eureka:
- enabled: false
- ConnectTimeout: 60000
- ReadTimeout: 60000
- # icd-search:
- # ribbon:
- # eureka:
- # enabled: true
- # NIWSServerListClassName: com.netflix.niws.loadbalancer.DiscoveryEnabledNIWSServerList
- # ConnectTimeout: 50000
- # ReadTimeout: 50000
- # MaxTotalHttpConnections: 500
- # MaxConnectionsPerHost: 100
- # docker container run -e "DOCKER_HOST=$(ip -4 addr show docker0 | grep -Po 'inet \K[\d.]+')"
|