Skip to content

配置文件说明

ronger edited this page Jan 28, 2021 · 2 revisions

感谢使用 forest,以下是本项目的配置文件说明

数据库配置

datasource:
    url: jdbc:mysql://localhost:3306/forest?characterEncoding=UTF-8&autoReconnect=true&useSSL=false&serverTimezone=Asia/Shanghai&allowMultiQueries=true
    username: root
    password: # 数据库密码
    driver-class-name: com.mysql.cj.jdbc.Driver
  • characterEncoding 指定处理字符的解码和编码的格式
  • serverTimezone 指定时区
  • allowMultiQueries 允许多行 sql 一起执行

redis 配置

redis:
  host: 127.0.0.1
  port: 6379
  password: # redis 密码
  database: 1
  timeout: 3000
  jedis:
    pool:
      max-active: 8
      max-wait: 1
      max-idle: 500
      min-idle: 0

邮箱服务配置

mail:
  host: smtp.163.com # 网站发送邮件邮箱服务 host
  port: 465
  username: # 邮箱
  password: # 密码

用户注册及找回密码时使用,本项目使用的是网易邮箱,其他邮箱可根据官方教程配置

系统资源路径配置

resource:
  domain: http://yourdomain.com # 网站域名
  file-path: http://yourdomain.com # 上传文件前缀域名
  pic-path: /yoursrc/xx/nebula/static # 上传文件存储地址

百度相关配置

baidu:
  data:
    site: https://yourdomain.com # 百度搜索(SEO)绑定网站域名
    token: xxxx
  ai:
    appId: xxx # 百度AI-文字识别 应用 appId
    appKey: xxxx # 百度AI-文字识别 应用 appKey
    secretKey: xxxx # 百度AI-文字识别 应用 secretKey
Clone this wiki locally