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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-07-08 08:55:16 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-07-08 08:55:16 +0400
commit2882d16e7a244d6627d9f6d9436651a38bf11bad (patch)
treebfb2b93d77cfc8c7feadec067a38d63e92ca9c0e /config/puma.rb.example
parentdb11c1fd88660c3cf49ddb737f2b709981c0f554 (diff)
cleanup puma config a bit
Diffstat (limited to 'config/puma.rb.example')
-rw-r--r--config/puma.rb.example38
1 files changed, 3 insertions, 35 deletions
diff --git a/config/puma.rb.example b/config/puma.rb.example
index ad5e3e23501..025ff7f3f05 100644
--- a/config/puma.rb.example
+++ b/config/puma.rb.example
@@ -8,47 +8,12 @@
# ENV['RAILS_RELATIVE_URL_ROOT'] = "/gitlab"
application_path = '/home/git/gitlab'
-
-# The directory to operate out of.
-#
-# The default is the current directory.
-#
directory application_path
-
-# Set the environment in which the rack's app will run.
-#
-# The default is “development”.
-#
environment 'production'
-
-# Daemonize the server into the background. Highly suggest that
-# this be combined with “pidfile” and “stdout_redirect”.
-#
-# The default is “false”.
-#
daemonize true
-
-# Store the pid of the server in the file at “path”.
-#
pidfile "#{application_path}/tmp/pids/puma.pid"
-
-# Use “path” as the file to store the server info state. This is
-# used by “pumactl” to query and control the server.
-#
state_path "#{application_path}/tmp/pids/puma.state"
-
-# Redirect STDOUT and STDERR to files specified. The 3rd parameter
-# (“append”) specifies whether the output is appended, the default is
-# “false”.
-#
stdout_redirect "#{application_path}/log/puma.stdout.log", "#{application_path}/log/puma.stderr.log"
-# stdout_redirect '/u/apps/lolcat/log/stdout', '/u/apps/lolcat/log/stderr', true
-
-# Disable request logging.
-#
-# The default is “false”.
-#
-# quiet
# Configure “min” to be the minimum number of threads to use to answer
# requests and “max” the maximum.
@@ -63,6 +28,9 @@ stdout_redirect "#{application_path}/log/puma.stdout.log", "#{application_path}/
# The default is “tcp://0.0.0.0:9292”.
#
# bind 'tcp://0.0.0.0:9292'
+# bind 'unix:///var/run/puma.sock'
+# bind 'unix:///var/run/puma.sock?umask=0777'
+# bind 'ssl://127.0.0.1:9292?key=path_to_key&cert=path_to_cert'
bind "unix://#{application_path}/tmp/sockets/gitlab.socket"
# Instead of “bind 'ssl://127.0.0.1:9292?key=path_to_key&cert=path_to_cert'” you