mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-15 18:02:49 +00:00
26 lines
501 B
Desktop File
26 lines
501 B
Desktop File
# BTC RPC Explorer service
|
|
# /etc/systemd/system/btc_rpc_explorer.service
|
|
|
|
[Unit]
|
|
Description=BTC RPC Explorer
|
|
Wants=bitcoind.service
|
|
After=bitcoind.service
|
|
|
|
[Service]
|
|
ExecStartPre=/usr/bin/wait_on_bitcoin.sh
|
|
WorkingDirectory=/opt/mynode/btc-rpc-explorer
|
|
ExecStart=/usr/bin/npm start
|
|
|
|
User=bitcoin
|
|
Group=bitcoin
|
|
Type=simple
|
|
LimitNOFILE=128000
|
|
TimeoutSec=240
|
|
Restart=always
|
|
RestartSec=60
|
|
StandardOutput=syslog
|
|
StandardError=syslog
|
|
SyslogIdentifier=btc_rpc_explorer
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |