mirror of
https://github.com/romanz/electrs.git
synced 2024-11-19 09:54:09 +01:00
19 lines
357 B
SYSTEMD
19 lines
357 B
SYSTEMD
|
[Unit]
|
||
|
Description=Electrum Rust Server
|
||
|
|
||
|
[Service]
|
||
|
Type=simple
|
||
|
ExecStart=/path/to/electrs/target/release/electrs -vvvv --db-dir /path/to/electrs/db/
|
||
|
Restart=on-failure
|
||
|
RestartSec=60
|
||
|
Environment="RUST_BACKTRACE=1"
|
||
|
|
||
|
# Hardening measures
|
||
|
PrivateTmp=true
|
||
|
ProtectSystem=full
|
||
|
NoNewPrivileges=true
|
||
|
MemoryDenyWriteExecute=true
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|