ag-ehr-platform.yml 1017 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. logging:
  2. level:
  3. com:
  4. netflix: DEBUG
  5. logging.level.root: DEBUG
  6. # service routes
  7. zuul:
  8. addProxyHeaders: false
  9. ignoredServices: '*'
  10. routes:
  11. packages:
  12. path: /api/v1.0/packages
  13. serviceId: svr-pack-mgr
  14. package_json:
  15. path: /api/v1.0/json_package
  16. serviceId: svr-pack-mgr
  17. esb_log:
  18. path: /api/v1.0/esb/uploadLog
  19. serviceId: svr-esb
  20. sanofi_support:
  21. path: /api/v1.0/sanofi/physic_signs
  22. serviceId: svr-health-profile
  23. health_profile:
  24. path: /api/v1.0/health_profiles/**
  25. serviceId: svr-health-profile
  26. stripPrefix: false
  27. ---
  28. spring:
  29. profiles: dev
  30. thymeleaf:
  31. cache: false
  32. server:
  33. ssl:
  34. key-store: C:/Windows/tomcat.keystore
  35. key-store-password: 123456
  36. key-password: 123456
  37. ---
  38. spring:
  39. profiles: test
  40. thymeleaf:
  41. cache: false
  42. server:
  43. ssl:
  44. key-store-password: 123456
  45. key-password: 123456
  46. ---
  47. spring:
  48. profiles: prod
  49. server:
  50. ssl:
  51. key-store-password: 123456
  52. key-password: 123456