Loading...
Generate systemd .service and .timer unit files from a form — dependencies, restart policy, resource limits, and a schedule — with a ready-to-install command.
[Unit] Description=My application service After=network-online.target Wants=network-online.target [Service] Type=simple User=myapp ExecStart=/usr/local/bin/myapp --serve Restart=on-failure RestartSec=5 NoNewPrivileges=true ProtectSystem=strict ProtectHome=true [Install] WantedBy=multi-user.target
# myapp.service sudo systemctl daemon-reload sudo systemctl enable --now myapp.service