From ec608979d0058b751a56e436d9600348d74162e0 Mon Sep 17 00:00:00 2001 From: azunia <272902075@qq.com> Date: Wed, 26 Aug 2020 17:26:03 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=AF=E5=88=87=E6=8D=A2=E6=9C=AC=E5=9C=B0?= =?UTF-8?q?=E4=B8=8E=E4=B8=83=E7=89=9B=E4=BA=91=E4=B8=8A=E4=BC=A0=EF=BC=8C?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=A4=B4=E5=83=8F=E4=B8=8E=E5=9B=BE=E7=89=87?= =?UTF-8?q?=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/config.yaml | 87 ++++++++++++++++++++++++++++------------------ 1 file changed, 54 insertions(+), 33 deletions(-) diff --git a/server/config.yaml b/server/config.yaml index 451aa4e1..6ed6ccfd 100644 --- a/server/config.yaml +++ b/server/config.yaml @@ -1,46 +1,67 @@ -captcha: - key-long: 6 - img-width: 240 - img-height: 80 +# Gin-Vue-Admin Global Configuration + +# casbin configuration casbin: - model-path: ./resource/rbac_model.conf + model-path: './resource/rbac_model.conf' + +# jwt configuration jwt: - signing-key: qmPlus -localupload: - local: true - avatar-path: uploads/avatar - file-path: uploads/file -log: - prefix: '[GIN-VUE-ADMIN]' - log-file: true - stdout: DEBUG - file: DEBUG + signing-key: 'qmPlus' + +# mysql connect configuration mysql: username: root - password: Aa@6447985 - path: 127.0.0.1:3306 - db-name: qmPlus - config: charset=utf8mb4&parseTime=True&loc=Local + password: 'Aa@6447985' + path: '127.0.0.1:3306' + db-name: 'qmPlus' + config: 'charset=utf8mb4&parseTime=True&loc=Local' max-idle-conns: 10 max-open-conns: 10 log-mode: false -qiniu: - access-key: 25j8dYBZ2wuiy0yhwShytjZDTX662b8xiFguwxzZ - secret-key: pgdbqEsf7ooZh7W3xokP833h3dZ_VecFXPDeG5JY - bucket: qm-plus-img - img-path: http://qmplusimg.henrongyi.top -redis: - addr: 127.0.0.1:6379 - password: "" - db: 0 + +#sqlite 配置 sqlite: - username: "" - password: "" path: db.db - config: loc=Asia/Shanghai log-mode: true + config: 'loc=Asia/Shanghai' + +# oss configuration + +# 切换本地与七牛云上传,分配头像和文件路径 +localupload: + local: true + avatar-path: uploads/avatar + file-path: uploads/file + +# 请自行七牛申请对应的 公钥 私钥 bucket 和 域名地址 +qiniu: + access-key: '25j8dYBZ2wuiy0yhwShytjZDTX662b8xiFguwxzZ' + secret-key: 'pgdbqEsf7ooZh7W3xokP833h3dZ_VecFXPDeG5JY' + bucket: 'qm-plus-img' + img-path: 'http://qmplusimg.henrongyi.top' + +# redis configuration +redis: + addr: '127.0.0.1:6379' + password: '' + db: 0 + +# system configuration system: use-multipoint: false - env: public + env: 'public' # Change to "develop" to skip authentication for development mode addr: 8888 - db-type: mysql + db-type: "mysql" # support mysql/sqlite + +# captcha configuration +captcha: + key-long: 6 + img-width: 240 + img-height: 80 + +# logger configuration +log: + prefix: '[GIN-VUE-ADMIN]' + log-file: true + stdout: 'DEBUG' + file: 'DEBUG' \ No newline at end of file -- GitLab