gogs/scripts/systemd/gogs.service

24 lines
524 B
INI
Raw Normal View History

2014-09-16 22:10:21 +04:00
[Unit]
2017-02-16 06:29:31 +03:00
Description=Gogs
2014-09-16 22:10:21 +04:00
After=syslog.target
After=network.target
After=mariadb.service mysqld.service postgresql.service memcached.service redis.service
2014-09-16 22:10:21 +04:00
[Service]
2016-02-15 04:19:00 +03:00
# Modify these two values and uncomment them if you have
# repos with lots of files and get an HTTP error 500 because
# of that
###
#LimitMEMLOCK=infinity
#LimitNOFILE=65535
2014-09-16 22:10:21 +04:00
Type=simple
User=git
Group=git
WorkingDirectory=/home/git/gogs
ExecStart=/home/git/gogs/gogs web
Restart=always
Environment=USER=git HOME=/home/git
2014-09-16 22:10:21 +04:00
[Install]
WantedBy=multi-user.target