mirror of
https://github.com/mempool/mempool.git
synced 2025-02-24 22:58:30 +01:00
23 lines
402 B
SYSTEMD
23 lines
402 B
SYSTEMD
|
[Unit]
|
||
|
Description=Bitcoind-minfee
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
ExecStart=/usr/local/bin/bitcoind -daemon -printtoconsole -pid=/minfee/bitcoind-minfee.pid
|
||
|
ExecStop=/usr/local/bin/bitcoin-cli stop
|
||
|
|
||
|
Type=forking
|
||
|
PIDFile=/minfee/bitcoind.pid
|
||
|
Restart=on-failure
|
||
|
|
||
|
User=minfee
|
||
|
Group=minfee
|
||
|
|
||
|
PrivateTmp=true
|
||
|
ProtectSystem=full
|
||
|
NoNewPrivileges=true
|
||
|
PrivateDevices=true
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|