mynode/rootfs/standard/etc/systemd/system/btc_rpc_explorer.service

27 lines
569 B
SYSTEMD
Raw Normal View History

2019-06-15 23:02:44 +00:00
# BTC RPC Explorer service
# /etc/systemd/system/btc_rpc_explorer.service
[Unit]
Description=BTC RPC Explorer
Wants=bitcoind.service
After=bitcoind.service
[Service]
2020-04-23 02:59:37 +00:00
ExecStartPre=/usr/bin/is_not_shutting_down.sh
ExecStartPre=/usr/bin/wait_on_bitcoin.sh
2019-12-11 02:31:32 +00:00
ExecStartPre=/usr/bin/wait_on_electrs.sh
2019-06-15 23:02:44 +00:00
WorkingDirectory=/opt/mynode/btc-rpc-explorer
ExecStart=/usr/bin/npm start
User=bitcoin
Group=bitcoin
Type=simple
2019-10-05 01:30:56 +00:00
TimeoutSec=120
2019-06-15 23:02:44 +00:00
Restart=always
RestartSec=60
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=btc_rpc_explorer
[Install]
WantedBy=multi-user.target