Change comments on configs; default ports for all storage backends

This commit is contained in:
bakatrouble
2016-12-25 20:43:36 +03:00
committed by Luck
Unverified
parent 0abe9598f6
commit f8a77cf809
5 changed files with 38 additions and 19 deletions
+10 -4
View File
@@ -89,8 +89,8 @@ group-weight {
# +------------------------------------------------------------------------+ #
# Which storage method the plugin should use.
# Currently supported: mysql, sqlite, h2, json, yaml, mongodb
# Fill out connection info below if you're using MySQL or MongoDB
# Currently supported: mysql, postgresql, sqlite, h2, json, yaml, mongodb
# Fill out connection info below if you're using MySQL, PostgreSQL or MongoDB
storage-method="h2"
# This block enables support for split datastores.
@@ -106,7 +106,11 @@ split-storage {
}
data {
address="localhost:3306"
# Uses standard DB engine port by default
# MySQL: 3306, PostgreSQL: 5432, MongoDB: 27017
# Specify as "host:port" if differs
address="localhost"
database="minecraft"
username="root"
password=""
@@ -125,9 +129,11 @@ data {
#
# If you decide to enable this feature, you should set "sync-minutes" to -1, as there is no need for LuckPerms
# to poll the database for changes.
#
# Port 6379 is used by default; set address to "host:port" if differs
redis {
enabled=false
address="localhost:6379"
address="localhost"
password=""
}