-
Notifications
You must be signed in to change notification settings - Fork 1
Configuration
mmonkey edited this page Jun 7, 2017
·
4 revisions
Configuration can be found in /config/destinations/destinations.conf.
| Node | Type | Default | Description |
|---|---|---|---|
| maximumHomes | number | 0 | Maximum number of homes a player can have. 0 is unlimited. |
| saveBackLocationOnDeath | true/false | true | Do player's locations get saved when they die? |
| teleportRequestExpiration | number | 30 | Number of seconds before teleport requests expire. |
Currently H2 and MySQL databases are supported.
| Node | Type | Default | Description |
|---|---|---|---|
| type | string | H2 | Database type. |
| url | string | "jdbc:h2:file:.\config\destinations\" | JDBC connection string path. |
| database | string | destinations | Database name. |
| username | string | "" | Database username. |
| password | string | "" | Database password. |
"Database Settings" {
database=destinations
password="password"
type=H2
url="jdbc:h2:file:.\\config\\destinations\\"
username="root"
}
"Database Settings" {
database=destinations
password="password"
type=MySQL
url="jdbc:mysql://localhost:3306/"
username="root"
}