Skip to content

GitLab

  • Menu
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • G gitlabhq1
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 21
    • Issues 21
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 12
    • Merge requests 12
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Packages & Registries
    • Packages & Registries
    • Package Registry
    • Infrastructure Registry
  • Analytics
    • Analytics
    • CI/CD
    • Repository
    • Value stream
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • gpt
  • large_projects
  • gitlabhq1
  • Merge requests
  • !9329

Closed
Created May 26, 2015 by Administrator@rootOwner
  • Report abuse
Report abuse

Support Puma web server

  • Overview 0
  • Commits 1
  • Changes 10

Created by: denji

  • Puma/Unicorn init script for BSD @denvazh
sudo echo 'gitlab_enable="YES"' >> /etc/rc.conf
# gitlab_dir=/usr/home/services/git/gitlab
# gitlab_user=git
# gitlab_env=production
  • Patches below has few improvements to the gitlab check and task_helper
  • Support puma_worker_killer for killing worker at leakage Puma
  • Rake scripts to verify whether init script was installed on FreeBSD and OSX (LaunchDaemon)
Gems Puma without Unicorn:
$ bundle install --without development test [mysql|postgres] unicorn \
 --path vendor/bundle --no-deployment
# Application server
group :unicorn do
  gem "unicorn", '~> 4.6.3'
  gem 'unicorn-worker-killer'
end
+
+group :puma do
+  gem 'puma'
+  gem 'puma_worker_killer'
+  #gem 'puma_auto_tune'
+end
Refs:
  • https://gitlab.com/gitlab-org/gitlab-recipes/issues/26
  • Puma/Sidekiq init-script
  • Patches below has few improvements to the gitlab check and task_helper
Assignee
Assign to
Reviewer
Request review from
Time tracking
Source branch: github/fork/denji/puma