unicorn 4.8.3 → 6.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (119) hide show
  1. checksums.yaml +5 -5
  2. data/.document +0 -1
  3. data/.gitattributes +5 -0
  4. data/.gitignore +2 -2
  5. data/.manifest +15 -19
  6. data/.olddoc.yml +25 -0
  7. data/Application_Timeouts +7 -7
  8. data/CONTRIBUTORS +6 -2
  9. data/DESIGN +2 -4
  10. data/Documentation/.gitignore +1 -3
  11. data/Documentation/unicorn.1 +222 -0
  12. data/Documentation/unicorn_rails.1 +207 -0
  13. data/FAQ +23 -6
  14. data/GIT-VERSION-FILE +1 -1
  15. data/GIT-VERSION-GEN +1 -1
  16. data/GNUmakefile +138 -92
  17. data/HACKING +5 -30
  18. data/ISSUES +73 -36
  19. data/KNOWN_ISSUES +18 -18
  20. data/LATEST +16 -22
  21. data/LICENSE +2 -2
  22. data/Links +24 -22
  23. data/NEWS +771 -0
  24. data/PHILOSOPHY +0 -6
  25. data/README +48 -42
  26. data/Rakefile +0 -44
  27. data/SIGNALS +2 -2
  28. data/Sandbox +11 -10
  29. data/TODO +0 -2
  30. data/TUNING +30 -9
  31. data/archive/slrnpull.conf +1 -1
  32. data/bin/unicorn +4 -2
  33. data/bin/unicorn_rails +3 -3
  34. data/examples/big_app_gc.rb +1 -1
  35. data/examples/init.sh +36 -8
  36. data/examples/logrotate.conf +17 -2
  37. data/examples/nginx.conf +14 -14
  38. data/examples/unicorn.conf.minimal.rb +2 -2
  39. data/examples/unicorn.conf.rb +14 -6
  40. data/examples/unicorn.socket +11 -0
  41. data/examples/unicorn@.service +40 -0
  42. data/ext/unicorn_http/c_util.h +5 -13
  43. data/ext/unicorn_http/common_field_optimization.h +22 -5
  44. data/ext/unicorn_http/epollexclusive.h +124 -0
  45. data/ext/unicorn_http/ext_help.h +0 -44
  46. data/ext/unicorn_http/extconf.rb +32 -5
  47. data/ext/unicorn_http/global_variables.h +2 -2
  48. data/ext/unicorn_http/httpdate.c +3 -2
  49. data/ext/unicorn_http/unicorn_http.c +926 -638
  50. data/ext/unicorn_http/unicorn_http.rl +159 -170
  51. data/ext/unicorn_http/unicorn_http_common.rl +1 -1
  52. data/lib/unicorn/configurator.rb +110 -46
  53. data/lib/unicorn/const.rb +2 -25
  54. data/lib/unicorn/http_request.rb +110 -31
  55. data/lib/unicorn/http_response.rb +17 -31
  56. data/lib/unicorn/http_server.rb +259 -179
  57. data/lib/unicorn/launcher.rb +1 -1
  58. data/lib/unicorn/oob_gc.rb +6 -6
  59. data/lib/unicorn/select_waiter.rb +6 -0
  60. data/lib/unicorn/socket_helper.rb +58 -78
  61. data/lib/unicorn/stream_input.rb +8 -7
  62. data/lib/unicorn/tee_input.rb +16 -11
  63. data/lib/unicorn/tmpio.rb +10 -6
  64. data/lib/unicorn/util.rb +5 -4
  65. data/lib/unicorn/version.rb +1 -1
  66. data/lib/unicorn/worker.rb +36 -23
  67. data/lib/unicorn.rb +64 -44
  68. data/man/man1/unicorn.1 +124 -112
  69. data/man/man1/unicorn_rails.1 +106 -107
  70. data/t/GNUmakefile +3 -76
  71. data/t/README +4 -4
  72. data/t/t0002-parser-error.sh +3 -3
  73. data/t/t0011-active-unix-socket.sh +1 -1
  74. data/t/t0012-reload-empty-config.sh +2 -1
  75. data/t/t0301-no-default-middleware-ignored-in-config.sh +25 -0
  76. data/t/t0301.ru +13 -0
  77. data/t/test-lib.sh +4 -3
  78. data/test/benchmark/README +14 -4
  79. data/test/benchmark/ddstream.ru +50 -0
  80. data/test/benchmark/readinput.ru +40 -0
  81. data/test/benchmark/uconnect.perl +66 -0
  82. data/test/exec/test_exec.rb +74 -20
  83. data/test/test_helper.rb +42 -33
  84. data/test/unit/test_ccc.rb +91 -0
  85. data/test/unit/test_droplet.rb +1 -1
  86. data/test/unit/test_http_parser.rb +49 -19
  87. data/test/unit/test_http_parser_ng.rb +98 -115
  88. data/test/unit/test_request.rb +11 -11
  89. data/test/unit/test_response.rb +31 -19
  90. data/test/unit/test_server.rb +89 -15
  91. data/test/unit/test_signals.rb +9 -9
  92. data/test/unit/test_socket_helper.rb +16 -12
  93. data/test/unit/test_tee_input.rb +10 -0
  94. data/test/unit/test_upload.rb +10 -15
  95. data/test/unit/test_util.rb +32 -6
  96. data/test/unit/test_waiter.rb +34 -0
  97. data/unicorn.gemspec +28 -23
  98. data/unicorn_1 +1 -0
  99. data/unicorn_rails_1 +1 -0
  100. metadata +37 -58
  101. data/.wrongdoc.yml +0 -11
  102. data/ChangeLog +0 -5027
  103. data/Documentation/GNUmakefile +0 -30
  104. data/Documentation/unicorn.1.txt +0 -178
  105. data/Documentation/unicorn_rails.1.txt +0 -175
  106. data/examples/git.ru +0 -13
  107. data/lib/unicorn/app/exec_cgi.rb +0 -154
  108. data/lib/unicorn/app/inetd.rb +0 -109
  109. data/lib/unicorn/ssl_client.rb +0 -11
  110. data/lib/unicorn/ssl_configurator.rb +0 -104
  111. data/lib/unicorn/ssl_server.rb +0 -42
  112. data/local.mk.sample +0 -59
  113. data/script/isolate_for_tests +0 -31
  114. data/t/hijack.ru +0 -42
  115. data/t/t0016-trust-x-forwarded-false.sh +0 -30
  116. data/t/t0017-trust-x-forwarded-true.sh +0 -30
  117. data/t/t0200-rack-hijack.sh +0 -27
  118. data/test/unit/test_http_parser_xftrust.rb +0 -38
  119. data/test/unit/test_sni_hostnames.rb +0 -47
data/lib/unicorn.rb CHANGED
@@ -1,9 +1,15 @@
1
1
  # -*- encoding: binary -*-
2
- require 'fcntl'
3
2
  require 'etc'
4
3
  require 'stringio'
5
- require 'rack'
6
4
  require 'kgio'
5
+ require 'raindrops'
6
+ require 'io/wait'
7
+
8
+ begin
9
+ require 'rack'
10
+ rescue LoadError
11
+ warn 'rack not available, functionality reduced'
12
+ end
7
13
 
8
14
  # :stopdoc:
9
15
  # Unicorn module containing all of the classes (include C extensions) for
@@ -11,19 +17,20 @@ require 'kgio'
11
17
  # enough functionality to service web application requests fast as possible.
12
18
  # :startdoc:
13
19
 
14
- # \Unicorn exposes very little of an user-visible API and most of its
15
- # internals are subject to change. \Unicorn is designed to host Rack
20
+ # unicorn exposes very little of an user-visible API and most of its
21
+ # internals are subject to change. unicorn is designed to host Rack
16
22
  # applications, so applications should be written against the Rack SPEC
17
- # and not \Unicorn internals.
23
+ # and not unicorn internals.
18
24
  module Unicorn
19
25
 
20
26
  # Raised inside TeeInput when a client closes the socket inside the
21
27
  # application dispatch. This is always raised with an empty backtrace
22
28
  # since there is nothing in the application stack that is responsible
23
29
  # for client shutdowns/disconnects. This exception is visible to Rack
24
- # applications unless PrereadInput middleware is loaded.
25
- class ClientShutdown < EOFError
26
- end
30
+ # applications unless PrereadInput middleware is loaded. This
31
+ # is a subclass of the standard EOFError class and applications should
32
+ # not rescue it explicitly, but rescue EOFError instead.
33
+ ClientShutdown = Class.new(EOFError)
27
34
 
28
35
  # :stopdoc:
29
36
 
@@ -34,13 +41,12 @@ module Unicorn
34
41
  def self.builder(ru, op)
35
42
  # allow Configurator to parse cli switches embedded in the ru file
36
43
  op = Unicorn::Configurator::RACKUP.merge!(:file => ru, :optparse => op)
37
-
38
- # Op is going to get cleared before the returned lambda is called, so
39
- # save this value so that it's still there when we need it:
40
- no_default_middleware = op[:no_default_middleware]
44
+ if ru =~ /\.ru$/ && !defined?(Rack::Builder)
45
+ abort "rack and Rack::Builder must be available for processing #{ru}"
46
+ end
41
47
 
42
48
  # always called after config file parsing, may be called after forking
43
- lambda do ||
49
+ lambda do |_, server|
44
50
  inner_app = case ru
45
51
  when /\.ru$/
46
52
  raw = File.read(ru)
@@ -51,9 +57,21 @@ module Unicorn
51
57
  Object.const_get(File.basename(ru, '.rb').capitalize)
52
58
  end
53
59
 
54
- pp({ :inner_app => inner_app }) if $DEBUG
60
+ if $DEBUG
61
+ require 'pp'
62
+ pp({ :inner_app => inner_app })
63
+ end
64
+
65
+ return inner_app unless server.default_middleware
55
66
 
56
- return inner_app if no_default_middleware
67
+ middleware = { # order matters
68
+ ContentLength: nil,
69
+ Chunked: nil,
70
+ CommonLogger: [ $stderr ],
71
+ ShowExceptions: nil,
72
+ Lint: nil,
73
+ TempfileReaper: nil,
74
+ }
57
75
 
58
76
  # return value, matches rackup defaults based on env
59
77
  # Unicorn does not support persistent connections, but Rainbows!
@@ -61,30 +79,24 @@ module Unicorn
61
79
  # middlewares will need ContentLength/Chunked middlewares.
62
80
  case ENV["RACK_ENV"]
63
81
  when "development"
64
- Rack::Builder.new do
65
- use Rack::ContentLength
66
- use Rack::Chunked
67
- use Rack::CommonLogger, $stderr
68
- use Rack::ShowExceptions
69
- use Rack::Lint
70
- run inner_app
71
- end.to_app
72
82
  when "deployment"
73
- Rack::Builder.new do
74
- use Rack::ContentLength
75
- use Rack::Chunked
76
- use Rack::CommonLogger, $stderr
77
- run inner_app
78
- end.to_app
83
+ middleware.delete(:ShowExceptions)
84
+ middleware.delete(:Lint)
79
85
  else
80
- inner_app
86
+ return inner_app
81
87
  end
88
+ Rack::Builder.new do
89
+ middleware.each do |m, args|
90
+ use(Rack.const_get(m), *args) if Rack.const_defined?(m)
91
+ end
92
+ run inner_app
93
+ end.to_app
82
94
  end
83
95
  end
84
96
 
85
97
  # returns an array of strings representing TCP listen socket addresses
86
98
  # and Unix domain socket paths. This is useful for use with
87
- # Raindrops::Middleware under Linux: http://raindrops.bogomips.org/
99
+ # Raindrops::Middleware under Linux: https://yhbt.net/raindrops/
88
100
  def self.listener_names
89
101
  Unicorn::HttpServer::LISTENERS.map do |io|
90
102
  Unicorn::SocketHelper.sock_name(io)
@@ -98,21 +110,29 @@ module Unicorn
98
110
  exc.backtrace.each { |line| logger.error(line) }
99
111
  end
100
112
 
101
- # remove this when we only support Ruby >= 2.0
113
+ F_SETPIPE_SZ = 1031 if RUBY_PLATFORM =~ /linux/
114
+
102
115
  def self.pipe # :nodoc:
103
- Kgio::Pipe.new.each { |io| io.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC) }
116
+ Kgio::Pipe.new.each do |io|
117
+ # shrink pipes to minimize impact on /proc/sys/fs/pipe-user-pages-soft
118
+ # limits.
119
+ if defined?(F_SETPIPE_SZ)
120
+ begin
121
+ io.fcntl(F_SETPIPE_SZ, Raindrops::PAGE_SIZE)
122
+ rescue Errno::EINVAL
123
+ # old kernel
124
+ rescue Errno::EPERM
125
+ # resizes fail if Linux is close to the pipe limit for the user
126
+ # or if the user does not have permissions to resize
127
+ end
128
+ end
129
+ end
104
130
  end
105
131
  # :startdoc:
106
132
  end
107
133
  # :enddoc:
108
- require 'unicorn/const'
109
- require 'unicorn/socket_helper'
110
- require 'unicorn/stream_input'
111
- require 'unicorn/tee_input'
112
- require 'unicorn/http_request'
113
- require 'unicorn/configurator'
114
- require 'unicorn/tmpio'
115
- require 'unicorn/util'
116
- require 'unicorn/http_response'
117
- require 'unicorn/worker'
118
- require 'unicorn/http_server'
134
+
135
+ %w(const socket_helper stream_input tee_input http_request configurator
136
+ tmpio util http_response worker http_server).each do |s|
137
+ require_relative "unicorn/#{s}"
138
+ end
data/man/man1/unicorn.1 CHANGED
@@ -1,210 +1,222 @@
1
- .TH UNICORN 1 "September 15, 2009" "Unicorn User Manual"
1
+ .TH "UNICORN" "1" "September 15, 2009" "Unicorn User Manual" ""
2
+ .hy
2
3
  .SH NAME
3
4
  .PP
4
- unicorn - a rackup-like command to launch the Unicorn HTTP server
5
+ unicorn \- a rackup\-like command to launch the Unicorn HTTP server
5
6
  .SH SYNOPSIS
6
7
  .PP
7
- unicorn [-c CONFIG_FILE] [-E RACK_ENV] [-D] [RACKUP_FILE]
8
+ unicorn [\-c CONFIG_FILE] [\-E RACK_ENV] [\-D] [RACKUP_FILE]
8
9
  .SH DESCRIPTION
9
10
  .PP
10
- A rackup(1)-like command to launch Rack applications using Unicorn.
11
- It is expected to be started in your application root (APP_ROOT), but
12
- the "working_directory" directive may be used in the CONFIG_FILE.
11
+ A rackup(1)\-like command to launch Rack applications using Unicorn.
12
+ It is expected to be started in your application root (APP_ROOT),
13
+ but the "working_directory" directive may be used in the CONFIG_FILE.
13
14
  .PP
14
- While unicorn takes a myriad of command-line options for compatibility
15
- with ruby(1) and rackup(1), it is recommended to stick to the few
16
- command-line options specified in the SYNOPSIS and use the CONFIG_FILE
17
- as much as possible.
15
+ While unicorn takes a myriad of command\-line options for
16
+ compatibility with ruby(1) and rackup(1), it is recommended to stick
17
+ to the few command\-line options specified in the SYNOPSIS and use
18
+ the CONFIG_FILE as much as possible.
18
19
  .SH RACKUP FILE
19
20
  .PP
20
- This defaults to "config.ru" in APP_ROOT.
21
- It should be the same file used by rackup(1) and other Rack launchers,
22
- it uses the \f[I]Rack::Builder\f[] DSL.
21
+ This defaults to "config.ru" in APP_ROOT. It should be the same
22
+ file used by rackup(1) and other Rack launchers, it uses the
23
+ \f[I]Rack::Builder\f[] DSL.
23
24
  .PP
24
- Embedded command-line options are mostly parsed for compatibility with
25
- rackup(1) but strongly discouraged.
25
+ Embedded command\-line options are mostly parsed for compatibility
26
+ with rackup(1) but strongly discouraged.
26
27
  .SH UNICORN OPTIONS
27
28
  .TP
28
- .B -c, --config-file CONFIG_FILE
29
- Path to the Unicorn-specific config file.
30
- The config file is implemented as a Ruby DSL, so Ruby code may executed.
31
- See the RDoc/ri for the \f[I]Unicorn::Configurator\f[] class for the
32
- full list of directives available from the DSL.
33
- Using an absolute path for for CONFIG_FILE is recommended as it makes
34
- multiple instances of Unicorn easily distinguishable when viewing ps(1)
35
- output.
29
+ .B \-c, \-\-config\-file CONFIG_FILE
30
+ Path to the Unicorn\-specific config file. The config file is
31
+ implemented as a Ruby DSL, so Ruby code may executed.
32
+ See the RDoc/ri for the \f[I]Unicorn::Configurator\f[] class for the full
33
+ list of directives available from the DSL.
34
+ Using an absolute path for for CONFIG_FILE is recommended as it
35
+ makes multiple instances of Unicorn easily distinguishable when
36
+ viewing ps(1) output.
36
37
  .RS
37
38
  .RE
38
39
  .TP
39
- .B -D, --daemonize
40
- Run daemonized in the background.
41
- The process is detached from the controlling terminal and stdin is
42
- redirected to "/dev/null".
43
- Unlike many common UNIX daemons, we do not chdir to "/" upon
44
- daemonization to allow more control over the startup/upgrade process.
45
- Unless specified in the CONFIG_FILE, stderr and stdout will also be
46
- redirected to "/dev/null".
40
+ .B \-D, \-\-daemonize
41
+ Run daemonized in the background. The process is detached from
42
+ the controlling terminal and stdin is redirected to "/dev/null".
43
+ Unlike many common UNIX daemons, we do not chdir to "/"
44
+ upon daemonization to allow more control over the startup/upgrade
45
+ process.
46
+ Unless specified in the CONFIG_FILE, stderr and stdout will
47
+ also be redirected to "/dev/null".
47
48
  .RS
48
49
  .RE
49
50
  .TP
50
- .B -E, --env RACK_ENV
51
- Run under the given RACK_ENV.
52
- See the RACK ENVIRONMENT section for more details.
51
+ .B \-E, \-\-env RACK_ENV
52
+ Run under the given RACK_ENV. See the RACK ENVIRONMENT section
53
+ for more details.
53
54
  .RS
54
55
  .RE
55
56
  .TP
56
- .B -l, --listen ADDRESS
57
- Listens on a given ADDRESS.
58
- ADDRESS may be in the form of HOST:PORT or PATH, HOST:PORT is taken to
59
- mean a TCP socket and PATH is meant to be a path to a UNIX domain
60
- socket.
61
- Defaults to "0.0.0.0:8080" (all addresses on TCP port 8080) For
62
- production deployments, specifying the "listen" directive in CONFIG_FILE
63
- is recommended as it allows fine-tuning of socket options.
57
+ .B \-l, \-\-listen ADDRESS
58
+ Listens on a given ADDRESS. ADDRESS may be in the form of
59
+ HOST:PORT or PATH, HOST:PORT is taken to mean a TCP socket
60
+ and PATH is meant to be a path to a UNIX domain socket.
61
+ Defaults to "0.0.0.0:8080" (all addresses on TCP port 8080)
62
+ For production deployments, specifying the "listen" directive in
63
+ CONFIG_FILE is recommended as it allows fine\-tuning of socket
64
+ options.
64
65
  .RS
65
66
  .RE
66
67
  .TP
67
- .B -N, --no-default-middleware
68
- Disables loading middleware implied by RACK_ENV.
69
- This bypasses the configuration documented in the RACK ENVIRONMENT
70
- section, but still allows RACK_ENV to be used for
71
- application/framework-specific purposes.
68
+ .B \-N, \-\-no\-default\-middleware
69
+ Disables loading middleware implied by RACK_ENV. This bypasses the
70
+ configuration documented in the RACK ENVIRONMENT section, but still
71
+ allows RACK_ENV to be used for application/framework\-specific purposes.
72
72
  .RS
73
73
  .RE
74
74
  .SH RACKUP COMPATIBILITY OPTIONS
75
75
  .TP
76
- .B -o, --host HOST
77
- Listen on a TCP socket belonging to HOST, default is "0.0.0.0" (all
78
- addresses).
79
- If specified multiple times on the command-line, only the last-specified
80
- value takes effect.
76
+ .B \-o, \-\-host HOST
77
+ Listen on a TCP socket belonging to HOST, default is
78
+ "0.0.0.0" (all addresses).
79
+ If specified multiple times on the command\-line, only the
80
+ last\-specified value takes effect.
81
81
  This option only exists for compatibility with the rackup(1) command,
82
- use of "-l"/"--listen" switch is recommended instead.
82
+ use of "\-l"/"\-\-listen" switch is recommended instead.
83
83
  .RS
84
84
  .RE
85
85
  .TP
86
- .B -p, --port PORT
86
+ .B \-p, \-\-port PORT
87
87
  Listen on the specified TCP PORT, default is 8080.
88
- If specified multiple times on the command-line, only the last-specified
88
+ If specified multiple times on the command\-line, only the last\-specified
89
89
  value takes effect.
90
90
  This option only exists for compatibility with the rackup(1) command,
91
- use of "-l"/"--listen" switch is recommended instead.
91
+ use of "\-l"/"\-\-listen" switch is recommended instead.
92
92
  .RS
93
93
  .RE
94
94
  .TP
95
- .B -s, --server SERVER
96
- No-op, this exists only for compatibility with rackup(1).
95
+ .B \-s, \-\-server SERVER
96
+ No\-op, this exists only for compatibility with rackup(1).
97
97
  .RS
98
98
  .RE
99
99
  .SH RUBY OPTIONS
100
100
  .TP
101
- .B -e, --eval LINE
102
- Evaluate a LINE of Ruby code.
103
- This evaluation happens immediately as the command-line is being parsed.
101
+ .B \-e, \-\-eval LINE
102
+ Evaluate a LINE of Ruby code. This evaluation happens
103
+ immediately as the command\-line is being parsed.
104
104
  .RS
105
105
  .RE
106
106
  .TP
107
- .B -d, --debug
107
+ .B \-d, \-\-debug
108
108
  Turn on debug mode, the $DEBUG variable is set to true.
109
109
  .RS
110
110
  .RE
111
111
  .TP
112
- .B -w, --warn
112
+ .B \-w, \-\-warn
113
113
  Turn on verbose warnings, the $VERBOSE variable is set to true.
114
114
  .RS
115
115
  .RE
116
116
  .TP
117
- .B -I, --include PATH
118
- specify $LOAD_PATH.
119
- PATH will be prepended to $LOAD_PATH.
117
+ .B \-I, \-\-include PATH
118
+ specify $LOAD_PATH. PATH will be prepended to $LOAD_PATH.
120
119
  The \[aq]:\[aq] character may be used to delimit multiple directories.
121
- This directive may be used more than once.
122
- Modifications to $LOAD_PATH take place immediately and in the order they
123
- were specified on the command-line.
120
+ This directive may be used more than once. Modifications to
121
+ $LOAD_PATH take place immediately and in the order they were
122
+ specified on the command\-line.
124
123
  .RS
125
124
  .RE
126
125
  .TP
127
- .B -r, --require LIBRARY
128
- require a specified LIBRARY before executing the application.
129
- The "require" statement will be executed immediately and in the order
130
- they were specified on the command-line.
126
+ .B \-r, \-\-require LIBRARY
127
+ require a specified LIBRARY before executing the application. The
128
+ "require" statement will be executed immediately and in the order
129
+ they were specified on the command\-line.
131
130
  .RS
132
131
  .RE
133
132
  .SH SIGNALS
134
133
  .PP
135
134
  The following UNIX signals may be sent to the master process:
136
135
  .IP \[bu] 2
137
- HUP - reload config file, app, and gracefully restart all workers
136
+ HUP \- reload config file, app, and gracefully restart all workers
138
137
  .IP \[bu] 2
139
- INT/TERM - quick shutdown, kills all workers immediately
138
+ INT/TERM \- quick shutdown, kills all workers immediately
140
139
  .IP \[bu] 2
141
- QUIT - graceful shutdown, waits for workers to finish their current
142
- request before finishing.
140
+ QUIT \- graceful shutdown, waits for workers to finish their
141
+ current request before finishing.
143
142
  .IP \[bu] 2
144
- USR1 - reopen all logs owned by the master and all workers See
145
- Unicorn::Util.reopen_logs for what is considered a log.
143
+ USR1 \- reopen all logs owned by the master and all workers
144
+ See Unicorn::Util.reopen_logs for what is considered a log.
146
145
  .IP \[bu] 2
147
- USR2 - reexecute the running binary.
148
- A separate QUIT should be sent to the original process once the child is
149
- verified to be up and running.
146
+ USR2 \- reexecute the running binary. A separate QUIT
147
+ should be sent to the original process once the child is verified to
148
+ be up and running.
150
149
  .IP \[bu] 2
151
- WINCH - gracefully stops workers but keep the master running.
150
+ WINCH \- gracefully stops workers but keep the master running.
152
151
  This will only work for daemonized processes.
153
152
  .IP \[bu] 2
154
- TTIN - increment the number of worker processes by one
153
+ TTIN \- increment the number of worker processes by one
155
154
  .IP \[bu] 2
156
- TTOU - decrement the number of worker processes by one
155
+ TTOU \- decrement the number of worker processes by one
157
156
  .PP
158
- See the SIGNALS (http://unicorn.bogomips.org/SIGNALS.html) document for
157
+ See the SIGNALS (https://yhbt.net/unicorn/SIGNALS.html) document for
159
158
  full description of all signals used by Unicorn.
160
159
  .SH RACK ENVIRONMENT
161
160
  .PP
162
161
  Accepted values of RACK_ENV and the middleware they automatically load
163
162
  (outside of RACKUP_FILE) are exactly as those in rackup(1):
164
163
  .IP \[bu] 2
165
- development - loads Rack::CommonLogger, Rack::ShowExceptions, and
166
- Rack::Lint middleware
164
+ development \- loads Rack::CommonLogger, Rack::ShowExceptions, and
165
+ Rack::Lint middleware
167
166
  .IP \[bu] 2
168
- deployment - loads Rack::CommonLogger middleware
167
+ deployment \- loads Rack::CommonLogger middleware
169
168
  .IP \[bu] 2
170
- none - loads no middleware at all, relying entirely on RACKUP_FILE
169
+ none \- loads no middleware at all, relying entirely on RACKUP_FILE
171
170
  .PP
172
- All unrecognized values for RACK_ENV are assumed to be "none".
173
- Production deployments are strongly encouraged to use "deployment" or
174
- "none" for maximum performance.
171
+ All unrecognized values for RACK_ENV are assumed to be
172
+ "none". Production deployments are strongly encouraged to use
173
+ "deployment" or "none" for maximum performance.
175
174
  .PP
176
- As of Unicorn 0.94.0, RACK_ENV is exported as a process-wide environment
177
- variable as well.
178
- While not current a part of the Rack specification as of Rack 1.0.1,
179
- this has become a de facto standard in the Rack world.
175
+ As of Unicorn 0.94.0, RACK_ENV is exported as a process\-wide environment
176
+ variable as well. While not current a part of the Rack specification as
177
+ of Rack 1.0.1, this has become a de facto standard in the Rack world.
180
178
  .PP
181
179
  Note the Rack::ContentLength and Rack::Chunked middlewares are also
182
180
  loaded by "deployment" and "development", but no other values of
183
- RACK_ENV.
184
- If needed, they must be individually specified in the RACKUP_FILE, some
185
- frameworks do not require them.
181
+ RACK_ENV. If needed, they must be individually specified in the
182
+ RACKUP_FILE, some frameworks do not require them.
186
183
  .SH ENVIRONMENT VARIABLES
187
184
  .PP
188
- The RACK_ENV variable is set by the aforementioned -E switch.
189
- All application or library-specific environment variables (e.g.
190
- TMPDIR) may always be set in the Unicorn CONFIG_FILE in addition to the
191
- spawning shell.
192
- When transparently upgrading Unicorn, all environment variables set in
193
- the old master process are inherited by the new master process.
185
+ The RACK_ENV variable is set by the aforementioned \-E switch.
186
+ All application or library\-specific environment variables (e.g. TMPDIR)
187
+ may always be set in the Unicorn CONFIG_FILE in addition to the spawning
188
+ shell. When transparently upgrading Unicorn, all environment variables
189
+ set in the old master process are inherited by the new master process.
194
190
  Unicorn only uses (and will overwrite) the UNICORN_FD environment
195
191
  variable internally when doing transparent upgrades.
192
+ .PP
193
+ UNICORN_FD is a comma\-delimited list of one or more file descriptors
194
+ used to implement USR2 upgrades. Init systems may bind listen sockets
195
+ itself and spawn unicorn with UNICORN_FD set to the file descriptor
196
+ numbers of the listen socket(s).
197
+ .PP
198
+ As of unicorn 5.0, LISTEN_PID and LISTEN_FDS are used for socket
199
+ activation as documented in the sd_listen_fds(3) manpage. Users
200
+ relying on this feature do not need to specify a listen socket in
201
+ the unicorn config file.
196
202
  .SH SEE ALSO
197
203
  .IP \[bu] 2
198
- unicorn_rails(1)
199
- .IP \[bu] 2
200
204
  \f[I]Rack::Builder\f[] ri/RDoc
201
205
  .IP \[bu] 2
202
206
  \f[I]Unicorn::Configurator\f[] ri/RDoc
207
+ .UR https://yhbt.net/unicorn/Unicorn/Configurator.html
208
+ .UE
203
209
  .IP \[bu] 2
204
- Unicorn RDoc (http://unicorn.bogomips.org/)
210
+ unicorn RDoc
211
+ .UR https://yhbt.net/unicorn/
212
+ .UE
205
213
  .IP \[bu] 2
206
- Rack RDoc (http://rdoc.info/gems/r#/gems/rack/frames)
214
+ Rack RDoc
215
+ .UR https://www.rubydoc.info/github/rack/rack/
216
+ .UE
207
217
  .IP \[bu] 2
208
- Rackup HowTo (http://wiki.github.com/rack/rack/tutorial-rackup-howto)
218
+ Rackup HowTo
219
+ .UR https://github.com/rack/rack/wiki/(tutorial)-rackup-howto
220
+ .UE
209
221
  .SH AUTHORS
210
- The Unicorn Community <unicorn-public@bogomips.org>.
222
+ The Unicorn Community <unicorn-public@yhbt.net>.