From 3c1c0e412e4beea6b4e360c5042f271537de0ecc Mon Sep 17 00:00:00 2001 From: kamkow1 Date: Thu, 19 Jun 2025 21:46:47 +0200 Subject: [PATCH] Systemd service --- systemd/aboba.service | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 systemd/aboba.service diff --git a/systemd/aboba.service b/systemd/aboba.service new file mode 100644 index 0000000..7b4a8a6 --- /dev/null +++ b/systemd/aboba.service @@ -0,0 +1,13 @@ +[Unit] +Description=Aboba website server +After=network.target + +[Service] +Type=simple +Restart=always +User=root +WorkingDirectory=/var/lib/aboba +ExecStart=/usr/local/bin/aboba + +[Install] +WantedBy=multi-user.target