mirror of
https://github.com/gitlabhq/gitlab-recipes.git
synced 2026-01-08 22:18:02 -05:00
25 lines
922 B
Desktop File
25 lines
922 B
Desktop File
#####################################################
|
|
#
|
|
# GitLab version : 8.2 - 8.x
|
|
# Contributors : bjorn-oivind
|
|
# Downloaded from : https://gitlab.com/gitlab-org/gitlab-recipes/tree/master/init/systemd
|
|
#
|
|
####################################################
|
|
|
|
[Unit]
|
|
Description=Gitlab Workhorse handles slow HTTP requests for Gitlab.
|
|
Requires=gitlab-unicorn.service
|
|
Wants=gitlab-unicorn.service
|
|
After=gitlab-unicorn.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=git
|
|
WorkingDirectory=/home/git/gitlab-workhorse
|
|
SyslogIdentifier=gitlab-workhorse
|
|
|
|
ExecStart=/home/git/gitlab-workhorse/gitlab-workhorse -listenUmask 0 -listenNetwork unix -listenAddr /home/git/gitlab/tmp/sockets/gitlab-workhorse.socket -authBackend http://127.0.0.1:8080 -authSocket /home/git/gitlab/tmp/sockets/gitlab.socket -secretPath /home/git/gitlab/.gitlab_workhorse_secret -documentRoot /home/git/gitlab/public
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|