storage.yml

一、通用信息

这个文件是 PlotSquared 插件的数据库配置文件,位于 /plugins/PlotSquared/config/storage.yml 处.

二、参考文件

prefix: ''

# SQLite 配置
sqlite:
  # 是否使用 SQLite?
  use: true
  # 使用的文件名称
  db: "storage"

# MySQL 配置
mysql:
  # 是否使用 MySQL?
  use: false
  host: "localhost"
  port: "3306"
  user: "root"
  password: "password"
  database: "plot_db"
  # 有关 MySQL 的 properties 信息请查看: https://goo.gl/wngtN8
  properties:
  - "useSSL=false"

Last updated