debian-mirror-gitlab/debian/conf/gitlab-workhorse.service

28 lines
1 KiB
SYSTEMD
Raw Normal View History

2016-02-04 13:32:45 +05:30
#####################################################
#
# 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.
PartOf=gitlab.target
Requires=gitlab-unicorn.service
Wants=gitlab-unicorn.service
After=gitlab-unicorn.service
[Service]
Type=forking
User=gitlab
WorkingDirectory=/usr/share/gitlab
EnvironmentFile=/etc/gitlab/gitlab-debian.conf
SyslogIdentifier=gitlab-workhorse
2016-02-15 19:00:37 +05:30
PIDFile=/run/gitlab/gitlab-workhorse.pid
2016-02-04 13:32:45 +05:30
2016-02-18 14:31:41 +05:30
ExecStart=/usr/share/gitlab/bin/daemon_with_pidfile ${gitlab_pid_path}/gitlab-workhorse.pid gitlab-workhorse -listenUmask 0 -listenNetwork unix -listenAddr ${gitlab_pid_path}/gitlab-workhorse.socket -authBackend http://127.0.0.1:8080 -authSocket ${gitlab_pid_path}/gitlab.socket -documentRoot ${gitlab_app_root}/public >> ${gitlab_log_dir}/gitlab-workhorse.log 2>&1
2016-02-04 13:32:45 +05:30
[Install]
WantedBy=multi-user.target