ag-ehr-platform.yml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. server:
  38. ssl:
  39. key-store: C:/Windows/tomcat.keystore
  40. key-store-password: 123456
  41. key-password: 123456
  42. ---
  43. spring:
  44. profiles: test
  45. thymeleaf:
  46. cache: false
  47. server:
  48. ssl:
  49. key-store-password: 123456
  50. key-password: 123456
  51. ---
  52. spring:
  53. profiles: prod
  54. server:
  55. ssl:
  56. key-store-password: 123456
  57. key-password: 123456