ag-ehr-platform.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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: C:/Windows/tomcat.keystore
  45. key-store-password: 123456
  46. key-password: 123456
  47. ---
  48. spring:
  49. profiles: test
  50. thymeleaf:
  51. cache: false
  52. metrics:
  53. export:
  54. statsd:
  55. host: 192.168.1.221
  56. port: 8125
  57. server:
  58. ssl:
  59. key-store-password: 123456
  60. key-password: 123456
  61. ---
  62. spring:
  63. profiles: prod
  64. server:
  65. ssl:
  66. key-store-password: 123456
  67. key-password: 123456