Kumi
8eebfe4c44
Adjusted the RestartSec value from 86400s to 2s in service files to ensure rapid recovery on failure. Removed redundant LimitNOFILE directive as it was unnecessary.
20 lines
356 B
Desktop File
20 lines
356 B
Desktop File
[Unit]
|
|
Description=Transfer.coffee Tracker
|
|
After=syslog.target
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
|
|
User=transfercoffee
|
|
Group=transfercoffee
|
|
|
|
# Replace /opt/transfer.coffee with where you cloned the repo to
|
|
WorkingDirectory=/opt/transfer.coffee
|
|
ExecStart=/usr/bin/npm run tracker
|
|
|
|
Restart=always
|
|
RestartSec=2s
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|