svr-archive-security.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. logging:
  2. level:
  3. com:
  4. netflix: DEBUG
  5. spring:
  6. datasource:
  7. driver-class-name: com.mysql.jdbc.Driver
  8. max-active: 20
  9. max-idle: 8
  10. min-idle: 8
  11. validation-query: SELECT 1
  12. test-on-borrow: true
  13. ---
  14. spring:
  15. profiles: dev
  16. datasource:
  17. url: jdbc:mysql://192.168.1.220:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8
  18. username: ha
  19. password: ha
  20. redis:
  21. host: 192.168.1.220 # Redis server host.
  22. ---
  23. spring:
  24. profiles: alpha
  25. datasource:
  26. url: jdbc:mysql://192.168.1.220:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8
  27. username: ha
  28. password: ha
  29. redis:
  30. host: 192.168.1.220 # Redis server host.
  31. ---
  32. spring:
  33. profiles: test
  34. datasource:
  35. url: jdbc:mysql://172.19.103.50:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8
  36. username: weifuwu
  37. password: weifuwu
  38. redis:
  39. host: 172.19.103.47 # Redis server host.
  40. ---
  41. spring:
  42. profiles: prod
  43. datasource:
  44. url: jdbc:mysql://11.1.2.5:3306/healtharchive?useUnicode=true&characterEncoding=UTF-8
  45. username: ha
  46. password: jkzlxm
  47. redis:
  48. host: 11.1.2.20 # Redis server host.