123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- spring:
- cloud:
- nacos:
- discovery:
- server-addr: 127.0.0.1:6848
- datasource:
- dynamic:
- primary: com.chelvc.cloud.user.server
- datasource:
- "[com.chelvc.cloud.user.server]":
- url: jdbc:mysql://127.0.0.1:6080/user?characterEncoding=utf-8&serverTimezone=Asia/Shanghai&useSSL=false&allowMultiQueries=true&allowPublicKeyRetrieval=true&useAffectedRows=true
- username: user
- password: Chelvc@user!2023#
- hikari:
- driver-class-name: com.mysql.cj.jdbc.Driver
- pool-name: chelvc
- max-pool-size: 10
- max-lifetime: 120000
- "[com.chelvc.cloud.vehicle.server]":
- url: jdbc:mysql://127.0.0.1:6080/vehicle?characterEncoding=utf-8&serverTimezone=Asia/Shanghai&useSSL=false&allowMultiQueries=true&allowPublicKeyRetrieval=true&useAffectedRows=true
- username: vehicle
- password: Chelvc@vehicle!2023#
- hikari:
- driver-class-name: com.mysql.cj.jdbc.Driver
- pool-name: chelvc
- max-pool-size: 10
- max-lifetime: 120000
- redis:
- host: 127.0.0.1
- port: 7031
- password: Chelvc@2023
- nacos:
- config:
- server-addr: 127.0.0.1:6848
- security:
- ignores:
- - /user/**
- - /vehicle/**
- - /maintain/merchant/apply/notify #商户入驻回调
- - /maintain/merchant/reSign/notify #电子签回调
- - /maintain/asset/withdraw/notify #提现回调
- - /maintain/asset/transfer/notify #转账回调
- - /maintain/order/notify #支付回调
- - /maintain/order/refund/notify #退款回调
- oauth:
- scoped: true
- secret: oauth.token.secret@chelvc!@#2023
- clients:
- - appid: chelvc_client
- secret: chelvc@secret#2023!
- scopes: ADMIN,CUSTOMER,MERCHANT
- grants: sms,wechat,password,refresh_token
- access-token-timeout: 604800
- refresh-token-timeout: 7776000
- upload:
- bucket: /home/chelvc/static
- domain: https://test.chelvc.com/file
- channel: LOCAL
- location:
- clients:
- - key: VPKBZ-CR3CG-R23QE-QK2IY-LNXKZ-GCB34
- channel: TENCENT
- sms:
- clients:
- - appid: LTAI5tAnS3tQqjpHdT1KqeUw
- secret: xs6OZj6pyJLTcNBDjp6ikftVyKRXsk
- template: SMS_274640619
- signature: 车旅程
- channel: ALIYUN
- wechat:
- applets:
- - appid: wx593877b3c990b15c
- secret: 19ab92afb193b0f3c25e57ec32a3dd37
- payments:
- - name: applet
- mode: JSAPI
- appid: wx593877b3c990b15c
- mchid: 1692584316
- mchkey: 5671c0f7c3a2463ab4f602f43f043ba6
- callback: https://test.chelvc.com/api/order/applet/callback
- chelvc:
- domain: https://test.chelvc.com/api
|