minecraft-server-fabric/minecraftd.conf
Gordian Edenhofer 6c008ee185 Upgpkg: 1.8.9-3
Remove out-of-place Type option from backup timer
State that the config file is interpreted in bash
2016-01-30 13:07:29 +01:00

19 lines
613 B
Plaintext

# THIS IS THE CONFIGURATION FILE FOR THE MANAGING SCRIPT NOT FOR THE ACTUAL SERVER
# Variables are interpreted in bash. Simply using bash-syntax is sufficient.
# General parameters
SERVER_ROOT="/srv/minecraft"
BACKUPPATH="/srv/minecraft/backup"
LOGPATH="/srv/minecraft/logs"
WORLDPATHS="world" # World paths separated by spaces relative to SERVER_ROOT
KEEP_BACKUPS="10"
MC_USER="minecraft"
MAIN_JAR="minecraft_server.jar"
SESSION_NAME="minecraft"
# System parameters for the minecraft server
MINHEAP="512M"
MAXHEAP="1024M"
THREADS="1"
JAVA_PARMS="-Xmx${MAXHEAP} -Xms${MINHEAP} -XX:ParallelGCThreads=${THREADS}"