forest-admin.yml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. spring:
  2. datasource:
  3. url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
  4. username: root
  5. password: 123456
  6. druid:
  7. initial-size: 5
  8. min-idle: 10
  9. max-active: 20
  10. web-stat-filter:
  11. exclusions: "*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*"
  12. stat-view-servlet:
  13. login-username: druid
  14. login-password: druid
  15. redis:
  16. host: 172.16.90.253
  17. database: 0
  18. port: 6379
  19. password: 123456
  20. timeout: 300ms
  21. zipkin:
  22. base-url: http://localhost:9411
  23. locator:
  24. discovery:
  25. enabled: true
  26. sleuth:
  27. sampler:
  28. probability: 1.0
  29. boot:
  30. admin:
  31. client:
  32. url: http://localhost:8095
  33. management:
  34. endpoints:
  35. web:
  36. exposure:
  37. include: '*'
  38. endpoint:
  39. health:
  40. show-details: always
  41. mybatis:
  42. mapper-locations:
  43. - classpath:dao/*.xml
  44. - classpath*:com/**/mapper/*.xml
  45. logging:
  46. level:
  47. root: info
  48. com.hwrj.cloud: debug
  49. sleuth:
  50. sampler:
  51. probability: 1.0
  52. boot:
  53. admin:
  54. client:
  55. url: http://localhost:9091
  56. jwt:
  57. tokenHeader: Authorization
  58. secret: forest-admin-secret
  59. expiration: 604800
  60. tokenHead: Bearer
  61. redis:
  62. database: forest
  63. key:
  64. admin: 'ums:admin'
  65. token: 'ums:token'
  66. resourceList: 'ums:resourceList'
  67. expire:
  68. common: 86400