| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- zuihou:
- nginx:
- ip: 106.15.38.8 # 正式环境需要将该ip设置成nginx对应的 公网ip
- port: 10000
- redis:
- ip: 127.0.0.1
- port: 6379
- password: 123456
- database: 0
- rabbitmq:
- enabled: true
- ip: 127.0.0.1
- port: 5672
- username: guest
- password: guest
- mysql:
- ip: 127.0.0.1
- port: 3306
- driverClassName: com.mysql.cj.jdbc.Driver
- database: zuihou_defaults_yj
- username: root
- password: root
- 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
- database:
- isNotWrite: false
- swagger:
- # 正式环境用nginx代理,为了保持和cloud版本一致的URL,特意调整
- docket:
- general:
- base-path: /api/oauth
- oauth:
- base-path: /api/oauth
- auth:
- base-path: /api/authority
- common:
- base-path: /api/authority
- core:
- base-path: /api/authority
- tenant:
- base-path: /api/authority
- sms:
- base-path: /api/msgs
- msgs:
- base-path: /api/msgs
- file:
- base-path: /api/file
|