aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorThomas Fanninger <thomas@fanninger.at>2014-09-16 20:10:21 +0200
committerThomas Fanninger <thomas@fanninger.at>2014-09-16 20:10:21 +0200
commit78bd144c1c050444b959ea43c0ef5c63b75ad27e (patch)
tree85f85ce14f46c2c04422efd73a865c638796c03c /scripts
parentebb4f1b78cdf7ce877eafc346be94b8e8ac3217b (diff)
downloadgitea-78bd144c1c050444b959ea43c0ef5c63b75ad27e.tar.gz
gitea-78bd144c1c050444b959ea43c0ef5c63b75ad27e.zip
Intial commit for systemd support
Diffstat (limited to 'scripts')
-rw-r--r--scripts/systemd/gogs.service18
1 files changed, 18 insertions, 0 deletions
diff --git a/scripts/systemd/gogs.service b/scripts/systemd/gogs.service
new file mode 100644
index 0000000000..1fa0b82aea
--- /dev/null
+++ b/scripts/systemd/gogs.service
@@ -0,0 +1,18 @@
+[Unit]
+Description=Gogs (Go Git Service) server
+After=syslog.target
+After=network.target
+#After=mysqld.service
+#After=postgresql.service
+#After=memcached.service
+#After=redis.service
+
+[Service]
+Type=simple
+User=git
+Group=git
+ExecStart=/home/git/gogs/gogs/start.sh
+WorkingDirectory=/home/git/gogs
+
+[Install]
+WantedBy=multi-user.target