src.nth.io/

summaryrefslogtreecommitdiff
path: root/minecraft/templates/minecraft.service.j2
diff options
context:
space:
mode:
Diffstat (limited to 'minecraft/templates/minecraft.service.j2')
-rw-r--r--minecraft/templates/minecraft.service.j222
1 files changed, 22 insertions, 0 deletions
diff --git a/minecraft/templates/minecraft.service.j2 b/minecraft/templates/minecraft.service.j2
new file mode 100644
index 0000000..d310634
--- /dev/null
+++ b/minecraft/templates/minecraft.service.j2
@@ -0,0 +1,22 @@
+[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