application.yml 712 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. spring:
  2. application:
  3. name: api-endpoint
  4. eureka:
  5. client:
  6. fetch-registry: true
  7. service-url:
  8. defaultZone: http://${EUREKA}/eureka
  9. zuul:
  10. ignored-services: "*"
  11. prefix: /api
  12. routes:
  13. icd-search:
  14. path: /icd/**
  15. strip-prefix: false
  16. hystrix:
  17. command:
  18. ignored-services:
  19. execution:
  20. isolation:
  21. strategy: THREAD
  22. thread:
  23. timeoutInMilliseconds: 61000
  24. ribbon:
  25. ConnectTimeout: 60000
  26. ReadTimeout: 60000
  27. icd-search:
  28. ribbon:
  29. NIWSServerListClassName: com.netflix.niws.loadbalancer.DiscoveryEnabledNIWSServerList
  30. ConnectTimeout: 50000
  31. ReadTimeout: 50000
  32. MaxTotalHttpConnections: 500
  33. MaxConnectionsPerHost: 100