Browse Source

update server-handle.sh

SliverHorn 4 years ago
parent
commit
b0077e1e97
1 changed files with 90 additions and 66 deletions
  1. 90 66
      .docker-compose/shell/server-handle.sh

+ 90 - 66
.docker-compose/shell/server-handle.sh

@@ -7,87 +7,111 @@ filename="./config.yaml"
 cat>"${filename}"<<EOF
 # Gin-Vue-Admin Global Configuration
 
-# casbin configuration
-casbin:
-    model-path: './resource/rbac_model.conf'
-
 # jwt configuration
 jwt:
-    signing-key: 'qmPlus'
-
-# mysql connect configuration
-mysql:
-    username: root
-    password: 'Aa@6447985'
-    path: mysql
-    db-name: 'qmPlus'
-    config: 'charset=utf8mb4&parseTime=True&loc=Local'
-    max-idle-conns: 10
-    max-open-conns: 10
-    log-mode: true
-
-#sqlite 配置
-sqlite:
-    path: db.db
-    log-mode: true
-    config: 'loc=Asia/Shanghai'
-
-# oss configuration
-
-# 切换本地与七牛云上传,分配头像和文件路径
-localupload:
-  local: false
-  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: redis:6379
-    password: ''
-    db: 0
-
-# system configuration
-system:
-    use-multipoint: true
-    env: 'public'  # Change to "develop" to skip authentication for development mode
-    addr: 8888
-    db-type: "mysql"  # support mysql/sqlite
-
-# captcha configuration
-captcha:
-    key-long: 6
-    img-width: 240
-    img-height: 80
+  signing-key: 'qmPlus'
 
 # zap logger configuration
 zap:
-  # 可使用 "debug", "info", "warn", "error", "dpanic", "panic", "fatal",
   level: 'info'
-  # console: 控制台, json: json格式输出
   format: 'console'
   prefix: '[GIN-VUE-ADMIN]'
   director: 'log'
   link-name: 'latest_log'
   show-line: true
-  # LowercaseLevelEncoder:小写, LowercaseColorLevelEncoder:小写带颜色,CapitalLevelEncoder: 大写, CapitalColorLevelEncoder: 大写带颜色,
   encode-level: 'LowercaseColorLevelEncoder'
   stacktrace-key: 'stacktrace'
   log-in-console: true
 
+# redis configuration
+redis:
+  db: 0
+  addr: 'redis:6379'
+  password: ''
+
+# email configuration
 email:
-  email-from: '[email protected]'
-  email-nickname: 'test'
-  email-secret: 'xxx'
-  email-to: '[email protected]'
-  email-host: 'smtp.163.com'
-  email-port: 465
-  email-isSSL: true
+  to: '[email protected]'
+  port: 465
+  from: '[email protected]'
+  host: 'smtp.163.com'
+  is-ssl: true
+  secret: 'xxx'
+  nickname: 'test'
+
+# casbin configuration
+casbin:
+  model-path: './resource/rbac_model.conf'
+
+# system configuration
+system:
+  env: 'public'  # Change to "develop" to skip authentication for development mode
+  addr: 8888
+  db-type: 'mysql'
+  oss-type: 'qiniu'
+  config-env: 'GVA_CONFIG'
+  need-init-data: false
+  use-multipoint: false
+
+# captcha configuration
+captcha:
+  key-long: 6
+  img-width: 240
+  img-height: 80
+
+# mysql connect configuration
+mysql:
+  path: mysql
+  config: 'charset=utf8mb4&parseTime=True&loc=Local'
+  db-name: 'qmPlus'
+  username: 'root'
+  password: 'gdkid,,..'
+  max-idle-conns: 10
+  max-open-conns: 10
+  log-mode: false
+
+# sqlite connect configuration (sqlite需要gcc支持 windows用户需要自行安装gcc)
+sqlite:
+  path: 'db.db'
+  max-idle-conns: 10
+  max-open-conns: 10
+  logger: true
+
+# Sqlserver connect configuration
+sqlserver:
+  path: 'localhost:9930'
+  db-name: 'gorm'
+  username: 'gorm'
+  password: 'LoremIpsum86'
+  max-idle-conns: 10
+  max-open-conns: 10
+  logger: true
+
+# Postgresql connect configuration
+postgresql:
+  host: '127.0.0.1'
+  port: '9920'
+  config: 'sslmode=disable TimeZone=Asia/Shanghai'
+  db-name: 'gorm'
+  username: 'gorm'
+  password: 'gorm'
+  max-idle-conns: 10
+  max-open-conns: 10
+  prefer-simple-protocol: true
+  logger: false
+
+# local configuration
+local:
+  path: 'uploads/file'
+
+# qiniu configuration (请自行七牛申请对应的 公钥 私钥 bucket 和 域名地址)
+qiniu:
+  zone: 'ZoneHuadong'
+  bucket: 'qm-plus-img'
+  img-path: 'http://qmplusimg.henrongyi.top'
+  use-https: false
+  access-key: '25j8dYBZ2wuiy0yhwShytjZDTX662b8xiFguwxzZ'
+  secret-key: 'pgdbqEsf7ooZh7W3xokP833h3dZ_VecFXPDeG5JY'
+  use-cdn-domains: false
 EOF