application-dev.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. zuihou:
  2. nginx:
  3. ip: 106.15.38.8 # 正式环境需要将该ip设置成nginx对应的 公网ip
  4. port: 10000
  5. redis:
  6. ip: 127.0.0.1
  7. port: 6379
  8. password: 123456
  9. database: 0
  10. rabbitmq:
  11. enabled: true
  12. ip: 127.0.0.1
  13. port: 5672
  14. username: guest
  15. password: guest
  16. mysql:
  17. ip: 127.0.0.1
  18. port: 3306
  19. driverClassName: com.mysql.cj.jdbc.Driver
  20. database: zuihou_defaults_yj
  21. username: root
  22. password: root
  23. url: jdbc:mysql://${zuihou.mysql.ip}:${zuihou.mysql.port}/${zuihou.mysql.database}?serverTimezone=CTT&characterEncoding=utf8&useUnicode=true&useSSL=false&autoReconnect=true&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true
  24. database:
  25. isNotWrite: false
  26. swagger:
  27. # 正式环境用nginx代理,为了保持和cloud版本一致的URL,特意调整
  28. docket:
  29. general:
  30. base-path: /api/oauth
  31. oauth:
  32. base-path: /api/oauth
  33. auth:
  34. base-path: /api/authority
  35. common:
  36. base-path: /api/authority
  37. core:
  38. base-path: /api/authority
  39. tenant:
  40. base-path: /api/authority
  41. sms:
  42. base-path: /api/msgs
  43. msgs:
  44. base-path: /api/msgs
  45. file:
  46. base-path: /api/file