ag-ehr-platform.yml 990 B

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