config.yaml 2.5 KB
Newer Older
1 2 3
# Gin-Vue-Admin Global Configuration

# casbin configuration
4
casbin:
5 6 7
  model-path: './resource/rbac_model.conf'

# jwt configuration
8
jwt:
9 10 11
  signing-key: 'qmPlus'

# mysql connect configuration
12
mysql:
13
  username: root
14 15 16 17
  password: 'Aa@6447985'
  path: '127.0.0.1:3306'
  db-name: 'qmPlus'
  config: 'charset=utf8mb4&parseTime=True&loc=Local'
18 19 20
  max-idle-conns: 10
  max-open-conns: 10
  log-mode: false
21

22 23 24 25 26 27 28 29 30 31 32 33 34 35
# Postgresql connect configuration
postgresql:
  username: 'gorm'
  password: 'gorm'
  db-name: 'gorm'
  port: '9920'
  config: 'sslmode=disable TimeZone=Asia/Shanghai'
  max-idle-conns: 10
  max-open-conns: 10
  logger: false
  prefer-simple-protocol: true

# sqlite connect configuration
# sqlite需要gcc支持 windows用户需要自行安装gcc
36
sqlite:
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
  # path: 'file::memory:?cache=shared' # 内存模式
  path: 'db.db'
  max-idle-conns: 10
  max-open-conns: 10
  logger: true

# Sqlserver connect configuration
sqlserver:
  username: 'gorm'
  password: 'LoremIpsum86'
  db-name: 'gorm'
  path: 'localhost:9930'
  max-idle-conns: 10
  max-open-conns: 10
  logger: true
52 53 54 55 56

# oss configuration

# 切换本地与七牛云上传,分配头像和文件路径
localupload:
57
  local: false
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
  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
74
system:
75
  use-multipoint: false
76
  env: 'public'  # Change to "develop" to skip authentication for development mode
77
  addr: 8888
78
  db-type: "mysql"  # support mysql/postgresql/sqlite/sqlserver
79
  need-init-data: false
80 81 82 83 84 85 86

# captcha configuration
captcha:
  key-long: 6
  img-width: 240
  img-height: 80

87 88
# zap logger configuration
zap:
89
  # 可使用 "debug", "info", "warn", "error", "dpanic", "panic", "fatal",
90
  level: 'info'
91 92 93
  # console: 控制台, json: json格式输出
  format: 'console'
  prefix: '[GIN-VUE-ADMIN]'
94
  director: 'log'
95 96
  link-name: 'latest_log'
  show-line: true
97
  # LowercaseLevelEncoder:小写, LowercaseColorLevelEncoder:小写带颜色,CapitalLevelEncoder: 大写, CapitalColorLevelEncoder: 大写带颜色,
98 99 100
  encode-level: 'LowercaseColorLevelEncoder'
  stacktrace-key: 'stacktrace'
  log-in-console: true
M
maplepie 已提交
101 102

email:
103 104 105 106 107 108 109
  email-from: 'xxx@163.com'
  email-nickname: 'test'
  email-secret: 'xxx'
  email-to: 'xxx@qq.com'
  email-host: 'smtp.163.com'
  email-port: 465
  email-isSSL: true