aboutsummarylogtreecommitdiffstats
path: root/spigot.conf
diff options
context:
space:
mode:
Diffstat (limited to 'spigot.conf')
-rw-r--r--spigot.conf19
1 files changed, 14 insertions, 5 deletions
diff --git a/spigot.conf b/spigot.conf
index 7d2fe6303713..ebe90d70c615 100644
--- a/spigot.conf
+++ b/spigot.conf
@@ -3,16 +3,25 @@
# General parameters
SERVER_ROOT="/srv/craftbukkit"
-BACKUPPATH="/srv/craftbukkit/backup"
+BACKUP_DEST="/srv/craftbukkit/backup"
LOGPATH="/srv/craftbukkit/logs"
-WORLDPATHS="world world_nether world_the_end" # World paths separated by spaces relative to SERVER_ROOT
+BACKUP_PATHS="world world_nether world_the_end" # World paths separated by spaces relative to SERVER_ROOT
KEEP_BACKUPS="10"
-MC_USER="craftbukkit"
-MAIN_JAR="spigot.jar"
+GAME_USER="craftbukkit"
+MAIN_EXECUTABLE="spigot.jar"
SESSION_NAME="spigot"
-# System parameters for the minecraft server
+# System parameters for java
MINHEAP="512M"
MAXHEAP="1024M"
THREADS="1"
JAVA_PARMS="-Xmx${MAXHEAP} -Xms${MINHEAP} -XX:ParallelGCThreads=${THREADS}"
+
+# System parameters for the actual game server
+# Describes whether a daemon process which stops the server if it is not used by a player
+# within IDLE_IF_TIME seconds should be started. The GAME_PORT is not inhereted to the server!
+IDLE_SERVER=false # true or false
+IDLE_SESSION_NAME="idle_server"
+GAME_PORT="25565" # used to listen for incoming connections when the server is down
+CHECK_PLAYER_TIME="30" # in seconds
+IDLE_IF_TIME="1200" # in seconds