crss-edge-dc.yml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. zuul:
  2. host.socket-timeout-millis: 60000
  3. ignoredServices: '*'
  4. sensitiveHeaders: ''
  5. ignoredHeaders: Access-Control-Allow-Credentials, Access-Control-Allow-Origin
  6. routes:
  7. uaa:
  8. path: /uaa/**
  9. stripPrefix: false
  10. serviceId: crss-uaa
  11. crss-uaa:
  12. ribbon:
  13. listOfServers: http://dccrsscrss-uaa.marathon.l4lb.thisdcos.directory:9999
  14. hystrix:
  15. command:
  16. default:
  17. execution:
  18. isolation:
  19. thread:
  20. timeoutInMilliseconds: 300000
  21. #zuul.host.socket-timeout-millis: 30000
  22. ribbon:
  23. ConnectTimeout: 300000
  24. ReadTimeout: 600000
  25. maxAutoRetries: 5
  26. MaxAutoRetriesNextServer: 10
  27. # NOTE: since the server is undertow who serve the static pages, the uploads config must be set here also
  28. # if size was modified please update also the registration's application.yml
  29. spring:
  30. profiles:
  31. include: client-sec
  32. http:
  33. multipart:
  34. enabled: true
  35. maxFileSize: "25Mb"
  36. maxRequestSize: "25Mb"
  37. fileSizeThreshold: "5Mb"
  38. resolveLazily: false
  39. resources:
  40. chain:
  41. gzipped: true
  42. server:
  43. compression:
  44. enabled: true
  45. min-response-size: 1
  46. undertow:
  47. direct-buffers: true # Instruct JVM to use native I/O operations on the buffers
  48. buffer-size: 16384 # Socket buffer size. Default is 16kb
  49. io-threads: 16 # The number of I/O threads created for non-blocking tasks. (#CPU * 2)
  50. worker-threads: 128 # CPU * 16