added systemd files, not tested!
This commit is contained in:
parent
797706b731
commit
01c2770e38
4 changed files with 86 additions and 15 deletions
28
www-apps/gitlabhq/files/gitlab-unicorn.service
Normal file
28
www-apps/gitlabhq/files/gitlab-unicorn.service
Normal file
|
@ -0,0 +1,28 @@
|
|||
# cat /etc/systemd/system/gitlab-unicorn.service - for personal use
|
||||
# cat /var/lib/systemd/system/gitlab-unicorn.service - for package devs
|
||||
|
||||
#####################################################
|
||||
#
|
||||
# GitLab version : 5.x - 7.x
|
||||
# Contributors : davispuh, mtorromeo, axilleas, boeserwolf91, Stefan Tatschner (rumpelsepp)
|
||||
# Downloaded from : https://gitlab.com/gitlab-org/gitlab-recipes/tree/master/init/systemd
|
||||
#
|
||||
####################################################
|
||||
|
||||
[Unit]
|
||||
Description=GitLab Unicorn Server
|
||||
Requires=redis.service
|
||||
Wants=mysqld.service postgresql.service
|
||||
After=redis.service mysqld.service postgresql.service
|
||||
|
||||
[Service]
|
||||
User=git
|
||||
WorkingDirectory=/opt/gitlab-6
|
||||
Environment=RAILS_ENV=production
|
||||
SyslogIdentifier=gitlab-unicorn
|
||||
PIDFile=/run/gitlab/unicorn.pid
|
||||
|
||||
ExecStart=/usr/bin/bundle exec "unicorn_rails -D -c /opt/gitlab-6/config/unicorn.rb -E production"
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
Loading…
Add table
Add a link
Reference in a new issue