Skip to content
This repository has been archived by the owner on Jul 22, 2023. It is now read-only.

storage.yml

NotMyFault edited this page Jul 20, 2021 · 1 revision

About

This is the main database settings file for PlotSquared.

Located in: /plugins/PlotSquared/config/storage.yml If you are using SQLite, the storage.db is located in /plugins/PlotSquared/storage.db

Example

prefix: ''

# SQLite section
sqlite:
  # Should SQLite be used?
  use: true
  # The file to use
  db: "storage"

# MySQL section
mysql:
  # Should MySQL be used?
  use: false
  host: "localhost"
  port: "3306"
  user: "root"
  password: "password"
  database: "plot_db"
  # Set additional properties: https://goo.gl/wngtN8
  properties: 
  - "useSSL=false"
Clone this wiki locally