Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJob van der Voort <jobvandervoort@gmail.com>2014-12-08 15:51:27 +0300
committerJob van der Voort <jobvandervoort@gmail.com>2014-12-08 15:51:27 +0300
commitb7d4184f24000fcdee7ca48fd802e35ac03abb67 (patch)
tree8d2fda84ba2f1b97e9c7eef8cc8618994a1eb1cd /config/unicorn.rb.example
parentbbf9953b99d59801c72dd7b9550ee149ca77bfcf (diff)
advise about unicorn workers
Diffstat (limited to 'config/unicorn.rb.example')
-rw-r--r--config/unicorn.rb.example16
1 files changed, 9 insertions, 7 deletions
diff --git a/config/unicorn.rb.example b/config/unicorn.rb.example
index ea22744fd90..f8f441b1d42 100644
--- a/config/unicorn.rb.example
+++ b/config/unicorn.rb.example
@@ -13,9 +13,11 @@
#
# ENV['RAILS_RELATIVE_URL_ROOT'] = "/gitlab"
-# Use at least one worker per core if you're on a dedicated server,
-# more will usually help for _short_ waits on databases/caches.
-# The minimum is 2
+# We recommend using CPU cores + 1 worker processes.
+# Read more about unicorn workers here:
+# http://doc.gitlab.com/ee/install/requirements.html
+#
+# The minimum amount of worker processes is 2
worker_processes 2
# Since Unicorn is never exposed to outside clients, it does not need to
@@ -37,10 +39,10 @@ listen "127.0.0.1:8080", :tcp_nopush => true
# nuke workers after 30 seconds instead of 60 seconds (the default)
#
-# NOTICE: git push over http depends on this value.
-# If you want be able to push huge amount of data to git repository over http
-# you will have to increase this value too.
-#
+# NOTICE: git push over http depends on this value.
+# If you want be able to push huge amount of data to git repository over http
+# you will have to increase this value too.
+#
# Example of output if you try to push 1GB repo to GitLab over http.
# -> git push http://gitlab.... master
#