summarylogtreecommitdiffstats
path: root/litd.service
blob: 2dbd59e01d673398553da092f1dfb4577463e78e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[Unit]
Description=Lightning Terminal for LND daemon
After=network.target

[Service]
User=litd
Group=litd
EnvironmentFile=/etc/default/litd
ExecStart=/usr/bin/litd $LITD_ARGS
Restart=always
Type=simple
KillMode=process
TimeoutSec=280
RestartSec=60
SyslogIdentifier=litd

# Hardening measures
####################
# Provide a private /tmp and /var/tmp.
PrivateTmp=true
# Mount /usr, /boot/ and /etc read-only for the process.
ProtectSystem=full
# Deny access to /home, /root and /run/user
ProtectHome=true
# Disallow the process and all of its children to gain
# new privileges through execve().
NoNewPrivileges=true
# Use a new /dev namespace only populated with API pseudo devices
# such as /dev/null, /dev/zero and /dev/random.
PrivateDevices=true
# Deny the creation of writable and executable memory mappings.
MemoryDenyWriteExecute=true
TimeoutStopSec=180

[Install]
WantedBy=multi-user.target