mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-11-16 15:58:08 +00:00
26 lines
567 B
SYSTEMD
26 lines
567 B
SYSTEMD
|
[Unit]
|
||
|
Description=Monero stagenet node
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
User=monero-stagenet
|
||
|
Group=monero-stagenet
|
||
|
Type=simple
|
||
|
ExecStart=/home/monero-stagenet/monerod --config-file /home/monero-stagenet/shared-stagenet.conf --non-interactive
|
||
|
SyslogIdentifier=stagenet-node
|
||
|
Restart=always
|
||
|
|
||
|
# Hardening
|
||
|
PrivateTmp=true
|
||
|
#ProtectSystem=full
|
||
|
NoNewPrivileges=true
|
||
|
PrivateDevices=true
|
||
|
MemoryDenyWriteExecute=false
|
||
|
ProtectControlGroups=true
|
||
|
ProtectKernelTunables=true
|
||
|
RestrictSUIDSGID=true
|
||
|
# limit memory usage to 4gb
|
||
|
LimitRSS=4000000000
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|