summaryrefslogtreecommitdiffstats
path: root/systemd/gitea.service
diff options
context:
space:
mode:
Diffstat (limited to 'systemd/gitea.service')
-rw-r--r--systemd/gitea.service21
1 files changed, 21 insertions, 0 deletions
diff --git a/systemd/gitea.service b/systemd/gitea.service
new file mode 100644
index 0000000..895f2f1
--- /dev/null
+++ b/systemd/gitea.service
@@ -0,0 +1,21 @@
+[Unit]
+Description=Gitea (Git with a cup of tea)
+After=syslog.target
+After=network.target
+Wants=mysqld.service
+After=mysqld.service
+
+[Service]
+RestartSec=2s
+Type=simple
+User=git
+Group=git
+WorkingDirectory=/var/lib/gitea/
+
+ExecStart=/usr/local/bin/gitea web --config /etc/gitea/app.ini
+Restart=always
+Environment=USER=git HOME=/var/lib/git GITEA_WORK_DIR=/var/lib/gitea
+
+[Install]
+WantedBy=multi-user.target
+