123456789101112131415161718192021222324252627282930313233343536 |
- server:
- address: ":8080"
- dumpRouterMap: true
- routeOverWrite: true
- accessLogEnabled: true
- openapiPath: "/api.json"
- swaggerPath: "/swagger"
- logger:
- level : "all"
- stdout: true
- # Database.
- database:
- logger:
- level: "all"
- stdout: true
- default:
- link: "mysql:root:root@tcp(127.0.0.1:3306)/ppw_data_core"
- debug: true
- user:
- link: "mysql:root:root@tcp(127.0.0.1:3306)/ppw_user"
- debug: true
- # Redis 配置示例
- redis:
- default:
- address: 127.0.0.1:6379
- db: 0
- # pass: ""
- idleTimeout: 600
|