41 lines
1.6 KiB
TOML
41 lines
1.6 KiB
TOML
#General settings
|
|
[general]
|
|
#The host of the database
|
|
host = "10.0.0.5"
|
|
#database port
|
|
# Default: 3306
|
|
# Range: 0 ~ 65535
|
|
db_port = 3306
|
|
#whether use SSL
|
|
use_ssl = false
|
|
#username
|
|
user_name = "mainUser"
|
|
#password
|
|
password = "KurevskeHesloMain"
|
|
#database name
|
|
db_name = "playersync"
|
|
#the server id should be unique
|
|
Server_id = 1234567890
|
|
#The worlds that will be synchronized. If running on a server, leave array empty.
|
|
sync_world = []
|
|
#Whether to sync advancements between servers
|
|
sync_advancements = true
|
|
#Whether synchronize chat
|
|
sync_chat = false
|
|
#Whether recieve messages from other servers as host
|
|
IsChatServer = false
|
|
ChatServerIP = "127.0.0.1"
|
|
# Default: 7900
|
|
# Range: 0 ~ 65535
|
|
ChatServerPort = 7900
|
|
#Use the old (pre-Base64) serialization format for writing data to the database.
|
|
#Set to true ONLY if you have older mod versions reading the same database.
|
|
#This only affects writing data, the mod can read both Base64 and pre-Base64 serialization.
|
|
#New installations should leave this as 'false'.
|
|
use_legacy_serialization = false
|
|
#Override the title of placeholder items which are unavailable on the current server.
|
|
item_placeholder_title_override = ""
|
|
#Override the description of placeholder items which are unavailable on the current server.
|
|
item_placeholder_description_override = ""
|
|
~
|