ag-ehr-cloud.yml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. logging:
  2. level:
  3. com:
  4. netflix: DEBUG
  5. logging.level.root: INFO
  6. netflix:
  7. metrics:
  8. rest:
  9. metricName: api
  10. # service routes
  11. zuul:
  12. addProxyHeaders: false
  13. ignoredServices: '*'
  14. routes:
  15. packages:
  16. path: /api/v1.0/packages
  17. serviceId: svr-pack-mgr
  18. package_json:
  19. path: /api/v1.0/json_package
  20. serviceId: svr-pack-mgr
  21. esb_log:
  22. path: /api/v1.0/esb/uploadLog
  23. serviceId: svr-esb
  24. sanofi_support:
  25. path: /api/v1.0/sanofi/physic_signs/**
  26. serviceId: svr-health-profile
  27. stripPrefix: false
  28. health_profile:
  29. path: /api/v1.0/health_profiles/**
  30. serviceId: svr-health-profile
  31. stripPrefix: false
  32. ---
  33. spring:
  34. profiles: dev
  35. thymeleaf:
  36. cache: false
  37. metrics:
  38. export:
  39. statsd:
  40. host: 192.168.1.221
  41. port: 8125
  42. server:
  43. ssl:
  44. key-store-password: 123456
  45. key-password: 123456
  46. ---
  47. spring:
  48. profiles: alpha
  49. thymeleaf:
  50. cache: false
  51. metrics:
  52. export:
  53. statsd:
  54. host: 192.168.1.221
  55. port: 8125
  56. server:
  57. ssl:
  58. key-store: C:/Windows/tomcat.keystore
  59. key-store-password: 123456
  60. key-password: 123456
  61. ---
  62. spring:
  63. profiles: test
  64. thymeleaf:
  65. cache: false
  66. metrics:
  67. export:
  68. statsd:
  69. host: 192.168.1.221
  70. port: 8125
  71. server:
  72. ssl:
  73. key-store-password: 123456
  74. key-store: tomcat.keystore
  75. key-password: 123456
  76. ---
  77. spring:
  78. profiles: prod
  79. server:
  80. ssl:
  81. key-store-password: 123456
  82. key-password: 123456