minecraft/templates/minecraft.service.j2
author Luke Hoersten <luke@hoersten.org>
Sun, 24 May 2020 20:34:57 -0500
changeset 31 c51c4eaea2a7
parent 19 31de177274a1
permissions -rw-r--r--
Moved homebridge config to host-specific.

[Unit]
Description=Minecraft Server
Documentation=https://minecraft.gamepedia.com/Tutorials/Setting_up_a_server

Wants=network.target
After=network.target

[Service]
User={{minecraft_user}}
Group={{minecraft_user}}
WorkingDirectory={{minecraft_dir}}
Restart=on-failure
RestartSec=20 5
ExecStart=/usr/bin/java -Xms1536M -Xmx1536M -jar server.jar nogui

PrivateTmp=true
ProtectSystem=full
NoNewPrivileges=true
PrivateDevices=true

[Install]
WantedBy=multi-user.target