-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlightning.service
50 lines (37 loc) · 1.37 KB
/
lightning.service
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# It is not recommended to modify this file in-place, because it will
# be overwritten during package upgrades. If you want to add further
# options or overwrite existing ones then use
# $ systemctl edit lightningd.service
# See "man systemd.service" for details.
# Note that almost all daemon options could be specified in
# /etc/lightningd/lightningd.conf
# Skips the required before key because using trustedcoin to fetch block headers
[Unit]
Description=C-Lightning daemon
Wants=network-online.target
After=network-online.target
[Service]
ExecStart=/usr/bin/lightningd --daemon --conf /home/ceo/.lightning/config --pid-file=/home/ceo/.lightning/lightning-bitcoin.pid
# Creates /run/lightningd owned by bitcoin
RuntimeDirectory=lightningd
User=ceo
Group=ceo
Type=forking
PIDFile=/home/ceo/.lightning/lightning-bitcoin.pid
Restart=on-failure
# Hardening measures
####################
# Provide a private /tmp and /var/tmp.
PrivateTmp=true
# Mount /usr, /boot/ and /etc read-only for the process.
ProtectSystem=full
# 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