diff --git a/contrib/electrs.service b/contrib/electrs.service new file mode 100644 index 0000000..a1d003c --- /dev/null +++ b/contrib/electrs.service @@ -0,0 +1,18 @@ +[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