src.nth.io/

summaryrefslogtreecommitdiff
path: root/minecraft/templates/minecraft.service.j2
blob: d310634103a65929e402ebd7135c768057337c6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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