crss-ui.yml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. zuul:
  2. host.socket-timeout-millis: 30000
  3. ignoredServices: '*'
  4. #default is Cookie,Set-Cookie,Authorization.
  5. #removed Authorization from senstiive headers
  6. sensitiveHeaders: 'Cookie,Set-Cookie'
  7. routes:
  8. admin:
  9. path: /admin/**
  10. serviceId: admin-service
  11. reg:
  12. path: /reg/**
  13. serviceId: registration-service
  14. metering:
  15. path: /metering/**
  16. serviceId: metering-service
  17. scheduler:
  18. path: /sched/**
  19. serviceId: scheduler-service
  20. data-extraction:
  21. path: /data-extraction/**
  22. serviceId: data-extraction-service
  23. settlement:
  24. path: /settlement/**
  25. serviceId: settlement-service
  26. admin-service:
  27. ribbon:
  28. listOfServers: http://crssadmin-service.marathon.l4lb.thisdcos.directory:8080
  29. registration-service:
  30. ribbon:
  31. listOfServers: http://crssregistration-service.marathon.l4lb.thisdcos.directory:8080
  32. metering-service:
  33. ribbon:
  34. listOfServers: http://crssmetering-service.marathon.l4lb.thisdcos.directory:8080
  35. scheduler-service:
  36. ribbon:
  37. listOfServers: http://crssscheduler-service.marathon.l4lb.thisdcos.directory:8080
  38. data-extraction-service:
  39. ribbon:
  40. listOfServers: http://crssdata-extraction-service.marathon.l4lb.thisdcos.directory:8080
  41. settlement-service:
  42. ribbon:
  43. listOfServers: crss-settlement-app.marathon.l4lb.thisdcos.directory:8082
  44. hystrix:
  45. command:
  46. default:
  47. execution:
  48. isolation:
  49. thread:
  50. timeoutInMilliseconds: 300000
  51. zuul.host.socket-timeout-millis: 30000
  52. ribbon:
  53. ConnectTimeout: 30000
  54. ReadTimeout: 60000
  55. maxAutoRetries: 1
  56. MaxAutoRetriesNextServer: 2
  57. # NOTE: since the server is undertow who serve the static pages, the uploads config must be set here also
  58. # if size was modified please update also the registration's application.yml
  59. spring:
  60. http:
  61. multipart:
  62. enabled: true
  63. maxFileSize: "25Mb"
  64. maxRequestSize: "25Mb"
  65. fileSizeThreshold: "5Mb"
  66. resolveLazily: false
  67. resources:
  68. chain:
  69. gzipped: true
  70. server:
  71. compression:
  72. enabled: true
  73. min-response-size: 1
  74. undertow:
  75. direct-buffers: true # Instruct JVM to use native I/O operations on the buffers
  76. buffer-size: 16384 # Socket buffer size. Default is 16kb
  77. io-threads: 16 # The number of I/O threads created for non-blocking tasks. (#CPU * 2)
  78. worker-threads: 128 # CPU * 16