ag-ehr-platform.yml 914 B

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