ag-ehr-platform.yml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. logging:
  2. level:
  3. com:
  4. netflix: DEBUG
  5. logging.level.root: INFO
  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. stripPrefix: false
  24. health_profile:
  25. path: /api/v1.0/health_profiles/**
  26. serviceId: svr-health-profile
  27. stripPrefix: false
  28. ---
  29. spring:
  30. profiles: dev
  31. thymeleaf:
  32. cache: false
  33. server:
  34. ssl:
  35. key-store: C:/Windows/tomcat.keystore
  36. key-store-password: 123456
  37. key-password: 123456
  38. ---
  39. spring:
  40. profiles: test
  41. thymeleaf:
  42. cache: false
  43. server:
  44. ssl:
  45. key-store-password: 123456
  46. key-password: 123456
  47. ---
  48. spring:
  49. profiles: prod
  50. server:
  51. ssl:
  52. key-store-password: 123456
  53. key-password: 123456