| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- server:
- port: 8111
- servlet:
- context-path: /
- spring:
- application:
- name: hcp
- servlet:
- multipart:
- # 单个文件大小
- max-file-size: 100MB
- # 设置总上传的文件大小
- max-request-size: 100MB
- data:
- mongodb:
- authentication-database: hcp-dev
- database: hcp-dev
- host: 47.93.254.212
- port: 3717
- username: root
- password: SkyMedic$240307
- datasource:
- type: com.alibaba.druid.pool.DruidDataSource
- name: master
- url: jdbc:mysql://47.93.254.212:3485/hcp?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
- username: root
- password: SkyMedic$240307
- driver-class-name: com.mysql.cj.jdbc.Driver
- filters: stat
- maxActive: 100
- initialSize: 3
- maxWait: 60000
- minIdle: 3
- timeBetweenEvictionRunsMillis: 60000
- minEvictableIdleTimeMillis: 300000
- validationQuery: select 'x' FROM DUAL
- testWhileIdle: true
- testOnBorrow: false
- testOnReturn: false
- poolPreparedStatements: true
- maxOpenPreparedStatements: 20
- jackson:
- # 全局json时间格式化
- date-format: yyyy-MM-dd HH:mm:ss
- time-zone: GMT+8
- #redis
- redis:
- host: 47.93.254.212
- port: 6379
- timeout: 3000
- password: SkyMedic$240307
- database: 1 #默认0
- poolMaxIdle: 256
- poolMaxTotal: 100
- poolMaxWait: 5000
- # token配置
- jwt:
- tokenHeader: userToken
- tokenPrefix: Bearer
- secret: 123456
- expiration: 604800
- rememberExpiration: 604800
- mybatis-plus:
- config-location: classpath:mybatis-config.xml
- mapper-locations: classpath*:mapper/*Mapper.xml
- type-aliases-package: com.yingyangfly.**.domain
- oss:
- access-key-id: LTAI5tCEQ1So2i2GehVRk6Er
- access-key-secret: Ju8eTnJdHa6nZJuDPfee2eQJQvuVuw
- bucket-name: hcp-yaorong
- endpoint: oss-cn-beijing.aliyuncs.com #填写自己oss endpoint
- outDomain: https://yaorongoss.yaorongmedical.com #填写自己oss 外网域名
- wx:
- app-id: 填写自己微信支付key
- app-secret: 填写自己微信支付密码
- pay-url-callback: http://自己微信支付回调:8601/pub/api/wx/pay/appointment/order/callback
- refund-url-callback: http://自己微信支付退款回调:8601/pub/api/wx/refund/appointment/order/callback
- live:
- stream: 187278.push.tlivecloud.com
- broadcast: pull.dustlee.com
- time-expand: 1440
- key: ZySdM7afXBAhP6XGkpjT
- livekey: TENYsAdNFfFwYJ2XiMWW
- secretid: AKIDPo5KNCoCLFoJb1HMFvQirpfJj0nSvAA4
- secretkey: 1whR4UimcDakfMo2gCW9bppaHm371kET
- vod:
- secretid: AKIDPo5KNCoCLFoJb1HMFvQirpfJj0nSvAA4
- secretkey: 1whR4UimcDakfMo2gCW9bppaHm371kET
- subappid: 1300835310
- im:
- sdkappid: 1400823270
- secretkey: 227a119d8a54da08ad0ea2b96f006d1cddf933e0a57e0f517e691ce055722720
- yingyang:
- security:
- check-pwd: true
- security:
- ignored:
- urls: #安全路径白名单
- - /**/*.html
- - /**/*.js
- - /**/*.css
- - /**/*.png
- - /**/*.map
- - /favicon.ico
- - /actuator/**
- - /druid/**
- - /login
- - /register
- - /info
- - /logout
- - /pub/app/**
- - /callback/**
- - /im/callback/**
- - /pay/callback/**/m**
- - /system/dict/data/selectByDictType
- - /learn/package/tencent/learnPackage
- - /wx/tencent/save
- query-daily-trai: https://yaorong.yaorongmedical.com/h5-training-daily/index.html
- review-task-space: 30
|