summarylogtreecommitdiffstats
path: root/lndhub.service
blob: 6634ec2fce5a92c664a4a9a363a6389518d93a6c (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
[Unit]
Description=LndHub lighting node manager
After=network.target

[Service]
User=lndhub
Group=lndhub
EnvironmentFile=/etc/default/lndhub
WorkingDirectory=/var/lib/lndhub
ExecStart=/usr/bin/npm run start
Restart=always
RestartSec=30
SyslogIdentifier=lndhub
# 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

[Install]
WantedBy=multi-user.target