puma 3.11.1 → 6.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/History.md +2092 -422
- data/LICENSE +23 -20
- data/README.md +301 -69
- data/bin/puma-wild +3 -9
- data/docs/architecture.md +59 -21
- data/docs/compile_options.md +55 -0
- data/docs/deployment.md +69 -58
- data/docs/fork_worker.md +41 -0
- data/docs/java_options.md +54 -0
- data/docs/jungle/README.md +9 -0
- data/docs/jungle/rc.d/README.md +74 -0
- data/docs/jungle/rc.d/puma +61 -0
- data/docs/jungle/rc.d/puma.conf +10 -0
- data/docs/kubernetes.md +78 -0
- data/docs/nginx.md +2 -2
- data/docs/plugins.md +26 -12
- data/docs/rails_dev_mode.md +28 -0
- data/docs/restart.md +48 -22
- data/docs/signals.md +13 -11
- data/docs/stats.md +147 -0
- data/docs/systemd.md +108 -117
- data/docs/testing_benchmarks_local_files.md +150 -0
- data/docs/testing_test_rackup_ci_files.md +36 -0
- data/ext/puma_http11/PumaHttp11Service.java +2 -2
- data/ext/puma_http11/ext_help.h +1 -1
- data/ext/puma_http11/extconf.rb +68 -3
- data/ext/puma_http11/http11_parser.c +106 -118
- data/ext/puma_http11/http11_parser.h +2 -2
- data/ext/puma_http11/http11_parser.java.rl +22 -38
- data/ext/puma_http11/http11_parser.rl +6 -4
- data/ext/puma_http11/http11_parser_common.rl +6 -6
- data/ext/puma_http11/mini_ssl.c +474 -94
- data/ext/puma_http11/no_ssl/PumaHttp11Service.java +15 -0
- data/ext/puma_http11/org/jruby/puma/Http11.java +136 -121
- data/ext/puma_http11/org/jruby/puma/Http11Parser.java +84 -99
- data/ext/puma_http11/org/jruby/puma/MiniSSL.java +251 -88
- data/ext/puma_http11/puma_http11.c +53 -58
- data/lib/puma/app/status.rb +71 -49
- data/lib/puma/binder.rb +257 -151
- data/lib/puma/cli.rb +61 -38
- data/lib/puma/client.rb +464 -224
- data/lib/puma/cluster/worker.rb +183 -0
- data/lib/puma/cluster/worker_handle.rb +96 -0
- data/lib/puma/cluster.rb +343 -239
- data/lib/puma/commonlogger.rb +23 -14
- data/lib/puma/configuration.rb +144 -96
- data/lib/puma/const.rb +194 -115
- data/lib/puma/control_cli.rb +135 -81
- data/lib/puma/detect.rb +34 -2
- data/lib/puma/dsl.rb +1092 -153
- data/lib/puma/error_logger.rb +113 -0
- data/lib/puma/events.rb +17 -111
- data/lib/puma/io_buffer.rb +44 -5
- data/lib/puma/jruby_restart.rb +2 -73
- data/lib/puma/json_serialization.rb +96 -0
- data/lib/puma/launcher/bundle_pruner.rb +104 -0
- data/lib/puma/launcher.rb +205 -138
- data/lib/puma/log_writer.rb +147 -0
- data/lib/puma/minissl/context_builder.rb +96 -0
- data/lib/puma/minissl.rb +279 -70
- data/lib/puma/null_io.rb +61 -2
- data/lib/puma/plugin/systemd.rb +90 -0
- data/lib/puma/plugin/tmp_restart.rb +3 -1
- data/lib/puma/plugin.rb +9 -13
- data/lib/puma/rack/builder.rb +10 -11
- data/lib/puma/rack/urlmap.rb +3 -1
- data/lib/puma/rack_default.rb +21 -4
- data/lib/puma/reactor.rb +97 -185
- data/lib/puma/request.rb +688 -0
- data/lib/puma/runner.rb +114 -69
- data/lib/puma/sd_notify.rb +146 -0
- data/lib/puma/server.rb +409 -704
- data/lib/puma/single.rb +29 -72
- data/lib/puma/state_file.rb +48 -9
- data/lib/puma/thread_pool.rb +234 -93
- data/lib/puma/util.rb +23 -10
- data/lib/puma.rb +68 -5
- data/lib/rack/handler/puma.rb +119 -86
- data/tools/Dockerfile +16 -0
- data/tools/trickletest.rb +0 -1
- metadata +55 -33
- data/ext/puma_http11/io_buffer.c +0 -155
- data/lib/puma/accept_nonblock.rb +0 -23
- data/lib/puma/compat.rb +0 -14
- data/lib/puma/convenient.rb +0 -23
- data/lib/puma/daemon_ext.rb +0 -31
- data/lib/puma/delegation.rb +0 -11
- data/lib/puma/java_io_buffer.rb +0 -45
- data/lib/puma/rack/backports/uri/common_193.rb +0 -33
- data/lib/puma/tcp_logger.rb +0 -39
- data/tools/jungle/README.md +0 -13
- data/tools/jungle/init.d/README.md +0 -59
- data/tools/jungle/init.d/puma +0 -421
- data/tools/jungle/init.d/run-puma +0 -18
- data/tools/jungle/upstart/README.md +0 -61
- data/tools/jungle/upstart/puma-manager.conf +0 -31
- data/tools/jungle/upstart/puma.conf +0 -69
data/lib/puma/dsl.rb
CHANGED
@@ -1,5 +1,10 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'const'
|
4
|
+
require_relative 'util'
|
5
|
+
|
1
6
|
module Puma
|
2
|
-
# The methods that are available for use inside the
|
7
|
+
# The methods that are available for use inside the configuration file.
|
3
8
|
# These same methods are used in Puma cli and the rack handler
|
4
9
|
# internally.
|
5
10
|
#
|
@@ -10,23 +15,113 @@ module Puma
|
|
10
15
|
# end
|
11
16
|
# config.load
|
12
17
|
#
|
13
|
-
# puts config.options[:binds]
|
14
|
-
# "tcp://127.0.0.1:3001"
|
18
|
+
# puts config.options[:binds] # => "tcp://127.0.0.1:3001"
|
15
19
|
#
|
16
20
|
# Used to load file:
|
17
21
|
#
|
18
22
|
# $ cat puma_config.rb
|
19
|
-
#
|
23
|
+
# port 3002
|
24
|
+
#
|
25
|
+
# Resulting configuration:
|
20
26
|
#
|
21
27
|
# config = Configuration.new(config_file: "puma_config.rb")
|
22
28
|
# config.load
|
23
29
|
#
|
24
|
-
# puts config.options[:binds]
|
25
|
-
#
|
30
|
+
# puts config.options[:binds] # => "tcp://127.0.0.1:3002"
|
31
|
+
#
|
32
|
+
# You can also find many examples being used by the test suite in
|
33
|
+
# +test/config+.
|
34
|
+
#
|
35
|
+
# Puma v6 adds the option to specify a key name (String or Symbol) to the
|
36
|
+
# hooks that run inside the forked workers. All the hooks run inside the
|
37
|
+
# {Puma::Cluster::Worker#run} method.
|
38
|
+
#
|
39
|
+
# Previously, the worker index and the LogWriter instance were passed to the
|
40
|
+
# hook blocks/procs. If a key name is specified, a hash is passed as the last
|
41
|
+
# parameter. This allows storage of data, typically objects that are created
|
42
|
+
# before the worker that need to be passed to the hook when the worker is shutdown.
|
43
|
+
#
|
44
|
+
# The following hooks have been updated:
|
45
|
+
#
|
46
|
+
# | DSL Method | Options Key | Fork Block Location |
|
47
|
+
# | on_worker_boot | :before_worker_boot | inside, before |
|
48
|
+
# | on_worker_shutdown | :before_worker_shutdown | inside, after |
|
49
|
+
# | on_refork | :before_refork | inside |
|
50
|
+
# | after_refork | :after_refork | inside |
|
26
51
|
#
|
27
|
-
# Detailed docs can be found in `examples/config.rb`
|
28
52
|
class DSL
|
29
|
-
|
53
|
+
ON_WORKER_KEY = [String, Symbol].freeze
|
54
|
+
|
55
|
+
# Convenience method so logic can be used in CI.
|
56
|
+
#
|
57
|
+
# @see ssl_bind
|
58
|
+
#
|
59
|
+
def self.ssl_bind_str(host, port, opts)
|
60
|
+
verify = opts.fetch(:verify_mode, 'none').to_s
|
61
|
+
|
62
|
+
tls_str =
|
63
|
+
if opts[:no_tlsv1_1] then '&no_tlsv1_1=true'
|
64
|
+
elsif opts[:no_tlsv1] then '&no_tlsv1=true'
|
65
|
+
else ''
|
66
|
+
end
|
67
|
+
|
68
|
+
ca_additions = "&ca=#{Puma::Util.escape(opts[:ca])}" if ['peer', 'force_peer'].include?(verify)
|
69
|
+
|
70
|
+
low_latency_str = opts.key?(:low_latency) ? "&low_latency=#{opts[:low_latency]}" : ''
|
71
|
+
backlog_str = opts[:backlog] ? "&backlog=#{Integer(opts[:backlog])}" : ''
|
72
|
+
|
73
|
+
if defined?(JRUBY_VERSION)
|
74
|
+
cipher_suites = opts[:ssl_cipher_list] ? "&ssl_cipher_list=#{opts[:ssl_cipher_list]}" : nil # old name
|
75
|
+
cipher_suites = "#{cipher_suites}&cipher_suites=#{opts[:cipher_suites]}" if opts[:cipher_suites]
|
76
|
+
protocols = opts[:protocols] ? "&protocols=#{opts[:protocols]}" : nil
|
77
|
+
|
78
|
+
keystore_additions = "keystore=#{opts[:keystore]}&keystore-pass=#{opts[:keystore_pass]}"
|
79
|
+
keystore_additions = "#{keystore_additions}&keystore-type=#{opts[:keystore_type]}" if opts[:keystore_type]
|
80
|
+
if opts[:truststore]
|
81
|
+
truststore_additions = "&truststore=#{opts[:truststore]}"
|
82
|
+
truststore_additions = "#{truststore_additions}&truststore-pass=#{opts[:truststore_pass]}" if opts[:truststore_pass]
|
83
|
+
truststore_additions = "#{truststore_additions}&truststore-type=#{opts[:truststore_type]}" if opts[:truststore_type]
|
84
|
+
end
|
85
|
+
|
86
|
+
"ssl://#{host}:#{port}?#{keystore_additions}#{truststore_additions}#{cipher_suites}#{protocols}" \
|
87
|
+
"&verify_mode=#{verify}#{tls_str}#{ca_additions}#{backlog_str}"
|
88
|
+
else
|
89
|
+
ssl_cipher_filter = opts[:ssl_cipher_filter] ? "&ssl_cipher_filter=#{opts[:ssl_cipher_filter]}" : nil
|
90
|
+
ssl_ciphersuites = opts[:ssl_ciphersuites] ? "&ssl_ciphersuites=#{opts[:ssl_ciphersuites]}" : nil
|
91
|
+
v_flags = (ary = opts[:verification_flags]) ? "&verification_flags=#{Array(ary).join ','}" : nil
|
92
|
+
|
93
|
+
cert_flags = (cert = opts[:cert]) ? "cert=#{Puma::Util.escape(cert)}" : nil
|
94
|
+
key_flags = (key = opts[:key]) ? "&key=#{Puma::Util.escape(key)}" : nil
|
95
|
+
password_flags = (password_command = opts[:key_password_command]) ? "&key_password_command=#{Puma::Util.escape(password_command)}" : nil
|
96
|
+
|
97
|
+
reuse_flag =
|
98
|
+
if (reuse = opts[:reuse])
|
99
|
+
if reuse == true
|
100
|
+
'&reuse=dflt'
|
101
|
+
elsif reuse.is_a?(Hash) && (reuse.key?(:size) || reuse.key?(:timeout))
|
102
|
+
val = +''
|
103
|
+
if (size = reuse[:size]) && Integer === size
|
104
|
+
val << size.to_s
|
105
|
+
end
|
106
|
+
if (timeout = reuse[:timeout]) && Integer === timeout
|
107
|
+
val << ",#{timeout}"
|
108
|
+
end
|
109
|
+
if val.empty?
|
110
|
+
nil
|
111
|
+
else
|
112
|
+
"&reuse=#{val}"
|
113
|
+
end
|
114
|
+
else
|
115
|
+
nil
|
116
|
+
end
|
117
|
+
else
|
118
|
+
nil
|
119
|
+
end
|
120
|
+
|
121
|
+
"ssl://#{host}:#{port}?#{cert_flags}#{key_flags}#{password_flags}#{ssl_cipher_filter}#{ssl_ciphersuites}" \
|
122
|
+
"#{reuse_flag}&verify_mode=#{verify}#{tls_str}#{ca_additions}#{v_flags}#{backlog_str}#{low_latency_str}"
|
123
|
+
end
|
124
|
+
end
|
30
125
|
|
31
126
|
def initialize(options, config)
|
32
127
|
@config = config
|
@@ -55,6 +150,14 @@ module Puma
|
|
55
150
|
@plugins.clear
|
56
151
|
end
|
57
152
|
|
153
|
+
def set_default_host(host)
|
154
|
+
@options[:default_host] = host
|
155
|
+
end
|
156
|
+
|
157
|
+
def default_host
|
158
|
+
@options[:default_host] || Configuration::DEFAULTS[:tcp_host]
|
159
|
+
end
|
160
|
+
|
58
161
|
def inject(&blk)
|
59
162
|
instance_eval(&blk)
|
60
163
|
end
|
@@ -63,14 +166,33 @@ module Puma
|
|
63
166
|
@options[key.to_sym] || default
|
64
167
|
end
|
65
168
|
|
66
|
-
# Load the named plugin for use by this configuration
|
169
|
+
# Load the named plugin for use by this configuration.
|
170
|
+
#
|
171
|
+
# @example
|
172
|
+
# plugin :tmp_restart
|
67
173
|
#
|
68
174
|
def plugin(name)
|
69
175
|
@plugins << @config.load_plugin(name)
|
70
176
|
end
|
71
177
|
|
72
|
-
# Use
|
73
|
-
# be the
|
178
|
+
# Use an object or block as the rack application. This allows the
|
179
|
+
# configuration file to be the application itself.
|
180
|
+
#
|
181
|
+
# @example
|
182
|
+
# app do |env|
|
183
|
+
# body = 'Hello, World!'
|
184
|
+
#
|
185
|
+
# [
|
186
|
+
# 200,
|
187
|
+
# {
|
188
|
+
# 'Content-Type' => 'text/plain',
|
189
|
+
# 'Content-Length' => body.length.to_s
|
190
|
+
# },
|
191
|
+
# [body]
|
192
|
+
# ]
|
193
|
+
# end
|
194
|
+
#
|
195
|
+
# @see Puma::Configuration#app
|
74
196
|
#
|
75
197
|
def app(obj=nil, &block)
|
76
198
|
obj ||= block
|
@@ -80,8 +202,20 @@ module Puma
|
|
80
202
|
@options[:app] = obj
|
81
203
|
end
|
82
204
|
|
83
|
-
# Start the Puma control rack
|
84
|
-
# with to control the main server.
|
205
|
+
# Start the Puma control rack application on +url+. This application can
|
206
|
+
# be communicated with to control the main server. Additionally, you can
|
207
|
+
# provide an authentication token, so all requests to the control server
|
208
|
+
# will need to include that token as a query parameter. This allows for
|
209
|
+
# simple authentication.
|
210
|
+
#
|
211
|
+
# Check out {Puma::App::Status} to see what the app has available.
|
212
|
+
#
|
213
|
+
# @example
|
214
|
+
# activate_control_app 'unix:///var/run/pumactl.sock'
|
215
|
+
# @example
|
216
|
+
# activate_control_app 'unix:///var/run/pumactl.sock', { auth_token: '12345' }
|
217
|
+
# @example
|
218
|
+
# activate_control_app 'unix:///var/run/pumactl.sock', { no_token: true }
|
85
219
|
#
|
86
220
|
def activate_control_app(url="auto", opts={})
|
87
221
|
if url == "auto"
|
@@ -93,7 +227,12 @@ module Puma
|
|
93
227
|
end
|
94
228
|
|
95
229
|
if opts[:no_token]
|
96
|
-
|
230
|
+
# We need to use 'none' rather than :none because this value will be
|
231
|
+
# passed on to an instance of OptionParser, which doesn't support
|
232
|
+
# symbols as option values.
|
233
|
+
#
|
234
|
+
# See: https://github.com/puma/puma/issues/1193#issuecomment-305995488
|
235
|
+
auth_token = 'none'
|
97
236
|
else
|
98
237
|
auth_token = opts[:auth_token]
|
99
238
|
auth_token ||= Configuration.random_token
|
@@ -103,29 +242,47 @@ module Puma
|
|
103
242
|
@options[:control_url_umask] = opts[:umask] if opts[:umask]
|
104
243
|
end
|
105
244
|
|
106
|
-
# Load additional configuration from a file
|
107
|
-
# Files get loaded later via Configuration#load
|
245
|
+
# Load additional configuration from a file.
|
246
|
+
# Files get loaded later via Configuration#load.
|
247
|
+
#
|
248
|
+
# @example
|
249
|
+
# load 'config/puma/production.rb'
|
250
|
+
#
|
108
251
|
def load(file)
|
109
252
|
@options[:config_files] ||= []
|
110
253
|
@options[:config_files] << file
|
111
254
|
end
|
112
255
|
|
113
|
-
#
|
114
|
-
# protocols.
|
256
|
+
# Bind the server to +url+. "tcp://", "unix://" and "ssl://" are the only
|
257
|
+
# accepted protocols. Multiple urls can be bound to, calling +bind+ does
|
258
|
+
# not overwrite previous bindings.
|
259
|
+
#
|
260
|
+
# The default is "tcp://0.0.0.0:9292".
|
115
261
|
#
|
116
|
-
#
|
262
|
+
# You can use query parameters within the url to specify options:
|
117
263
|
#
|
118
|
-
#
|
119
|
-
#
|
264
|
+
# * Set the socket backlog depth with +backlog+, default is 1024.
|
265
|
+
# * Set up an SSL certificate with +key+ & +cert+.
|
266
|
+
# * Set up an SSL certificate for mTLS with +key+, +cert+, +ca+ and +verify_mode+.
|
267
|
+
# * Set whether to optimize for low latency instead of throughput with
|
268
|
+
# +low_latency+, default is to not optimize for low latency. This is done
|
269
|
+
# via +Socket::TCP_NODELAY+.
|
270
|
+
# * Set socket permissions with +umask+.
|
120
271
|
#
|
121
|
-
# @example
|
122
|
-
# bind
|
272
|
+
# @example Backlog depth
|
273
|
+
# bind 'unix:///var/run/puma.sock?backlog=512'
|
274
|
+
# @example SSL cert
|
275
|
+
# bind 'ssl://127.0.0.1:9292?key=key.key&cert=cert.pem'
|
276
|
+
# @example SSL cert for mutual TLS (mTLS)
|
277
|
+
# bind 'ssl://127.0.0.1:9292?key=key.key&cert=cert.pem&ca=ca.pem&verify_mode=force_peer'
|
278
|
+
# @example Disable optimization for low latency
|
279
|
+
# bind 'tcp://0.0.0.0:9292?low_latency=false'
|
280
|
+
# @example Socket permissions
|
281
|
+
# bind 'unix:///var/run/puma.sock?umask=0111'
|
123
282
|
#
|
124
|
-
# @
|
125
|
-
#
|
283
|
+
# @see Puma::Runner#load_and_bind
|
284
|
+
# @see Puma::Cluster#run
|
126
285
|
#
|
127
|
-
# @example Set socket permissions
|
128
|
-
# bind('unix:///var/run/puma.sock?umask=0111')
|
129
286
|
def bind(url)
|
130
287
|
@options[:binds] ||= []
|
131
288
|
@options[:binds] << url
|
@@ -135,59 +292,129 @@ module Puma
|
|
135
292
|
@options[:binds] = []
|
136
293
|
end
|
137
294
|
|
138
|
-
#
|
295
|
+
# Bind to (systemd) activated sockets, regardless of configured binds.
|
296
|
+
#
|
297
|
+
# Systemd can present sockets as file descriptors that are already opened.
|
298
|
+
# By default Puma will use these but only if it was explicitly told to bind
|
299
|
+
# to the socket. If not, it will close the activated sockets. This means
|
300
|
+
# all configuration is duplicated.
|
301
|
+
#
|
302
|
+
# Binds can contain additional configuration, but only SSL config is really
|
303
|
+
# relevant since the unix and TCP socket options are ignored.
|
304
|
+
#
|
305
|
+
# This means there is a lot of duplicated configuration for no additional
|
306
|
+
# value in most setups. This method tells the launcher to bind to all
|
307
|
+
# activated sockets, regardless of existing bind.
|
308
|
+
#
|
309
|
+
# To clear configured binds, the value only can be passed. This will clear
|
310
|
+
# out any binds that may have been configured.
|
311
|
+
#
|
312
|
+
# @example Use any systemd activated sockets as well as configured binds
|
313
|
+
# bind_to_activated_sockets
|
314
|
+
#
|
315
|
+
# @example Only bind to systemd activated sockets, ignoring other binds
|
316
|
+
# bind_to_activated_sockets 'only'
|
317
|
+
#
|
318
|
+
def bind_to_activated_sockets(bind=true)
|
319
|
+
@options[:bind_to_activated_sockets] = bind
|
320
|
+
end
|
321
|
+
|
322
|
+
# Define the TCP port to bind to. Use `bind` for more advanced options.
|
323
|
+
#
|
324
|
+
# The default is +9292+.
|
325
|
+
#
|
326
|
+
# @example
|
327
|
+
# port 3000
|
139
328
|
#
|
140
329
|
def port(port, host=nil)
|
141
|
-
host ||=
|
142
|
-
bind
|
330
|
+
host ||= default_host
|
331
|
+
bind URI::Generic.build(scheme: 'tcp', host: host, port: Integer(port)).to_s
|
332
|
+
end
|
333
|
+
|
334
|
+
# Define how long the tcp socket stays open, if no data has been received.
|
335
|
+
#
|
336
|
+
# The default is 30 seconds.
|
337
|
+
#
|
338
|
+
# @example
|
339
|
+
# first_data_timeout 40
|
340
|
+
#
|
341
|
+
# @see Puma::Server.new
|
342
|
+
#
|
343
|
+
def first_data_timeout(seconds)
|
344
|
+
@options[:first_data_timeout] = Integer(seconds)
|
143
345
|
end
|
144
346
|
|
145
|
-
# Define how long persistent connections can be idle before
|
146
|
-
#
|
347
|
+
# Define how long persistent connections can be idle before Puma closes them.
|
348
|
+
#
|
349
|
+
# The default is 20 seconds.
|
350
|
+
#
|
351
|
+
# @example
|
352
|
+
# persistent_timeout 30
|
353
|
+
#
|
354
|
+
# @see Puma::Server.new
|
147
355
|
#
|
148
356
|
def persistent_timeout(seconds)
|
149
|
-
@options[:persistent_timeout] = seconds
|
357
|
+
@options[:persistent_timeout] = Integer(seconds)
|
150
358
|
end
|
151
359
|
|
152
|
-
#
|
360
|
+
# If a new request is not received within this number of seconds, begin shutting down.
|
153
361
|
#
|
154
|
-
|
155
|
-
|
362
|
+
# The default is +nil+.
|
363
|
+
#
|
364
|
+
# @example
|
365
|
+
# idle_timeout 60
|
366
|
+
#
|
367
|
+
# @see Puma::Server.new
|
368
|
+
#
|
369
|
+
def idle_timeout(seconds)
|
370
|
+
@options[:idle_timeout] = Integer(seconds)
|
156
371
|
end
|
157
372
|
|
158
373
|
# Work around leaky apps that leave garbage in Thread locals
|
159
|
-
# across requests
|
374
|
+
# across requests.
|
375
|
+
#
|
376
|
+
# The default is +false+.
|
377
|
+
#
|
378
|
+
# @example
|
379
|
+
# clean_thread_locals
|
160
380
|
#
|
161
381
|
def clean_thread_locals(which=true)
|
162
382
|
@options[:clean_thread_locals] = which
|
163
383
|
end
|
164
384
|
|
165
|
-
#
|
166
|
-
#
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
# When shutting down, drain the accept socket of pending
|
172
|
-
# connections and proces them. This loops over the accept
|
173
|
-
# socket until there are no more read events and then stops
|
174
|
-
# looking and waits for the requests to finish.
|
385
|
+
# When shutting down, drain the accept socket of pending connections and
|
386
|
+
# process them. This loops over the accept socket until there are no more
|
387
|
+
# read events and then stops looking and waits for the requests to finish.
|
388
|
+
#
|
389
|
+
# @see Puma::Server#graceful_shutdown
|
390
|
+
#
|
175
391
|
def drain_on_shutdown(which=true)
|
176
392
|
@options[:drain_on_shutdown] = which
|
177
393
|
end
|
178
394
|
|
179
|
-
# Set the environment in which the
|
395
|
+
# Set the environment in which the rack's app will run. The value must be
|
396
|
+
# a string.
|
397
|
+
#
|
398
|
+
# The default is "development".
|
399
|
+
#
|
400
|
+
# @example
|
401
|
+
# environment 'production'
|
402
|
+
#
|
180
403
|
def environment(environment)
|
181
404
|
@options[:environment] = environment
|
182
405
|
end
|
183
406
|
|
184
|
-
# How long to wait for threads to stop when shutting them
|
185
|
-
#
|
186
|
-
#
|
187
|
-
# is the number of seconds to wait.
|
407
|
+
# How long to wait for threads to stop when shutting them down.
|
408
|
+
# Specifying :immediately will cause Puma to kill the threads immediately.
|
409
|
+
# Otherwise the value is the number of seconds to wait.
|
188
410
|
#
|
189
411
|
# Puma always waits a few seconds after killing a thread for it to try
|
190
412
|
# to finish up it's work, even in :immediately mode.
|
413
|
+
#
|
414
|
+
# The default is +:forever+.
|
415
|
+
#
|
416
|
+
# @see Puma::Server#graceful_shutdown
|
417
|
+
#
|
191
418
|
def force_shutdown_after(val=:forever)
|
192
419
|
i = case val
|
193
420
|
when :forever
|
@@ -195,80 +422,155 @@ module Puma
|
|
195
422
|
when :immediately
|
196
423
|
0
|
197
424
|
else
|
198
|
-
|
425
|
+
Float(val)
|
199
426
|
end
|
200
427
|
|
201
428
|
@options[:force_shutdown_after] = i
|
202
429
|
end
|
203
430
|
|
204
431
|
# Code to run before doing a restart. This code should
|
205
|
-
# close
|
432
|
+
# close log files, database connections, etc.
|
206
433
|
#
|
207
434
|
# This can be called multiple times to add code each time.
|
208
435
|
#
|
436
|
+
# @example
|
437
|
+
# on_restart do
|
438
|
+
# puts 'On restart...'
|
439
|
+
# end
|
440
|
+
#
|
209
441
|
def on_restart(&block)
|
210
|
-
|
211
|
-
@options[:on_restart] << block
|
442
|
+
process_hook :on_restart, nil, block, 'on_restart'
|
212
443
|
end
|
213
444
|
|
214
|
-
# Command to use to restart
|
215
|
-
# load
|
216
|
-
# to
|
445
|
+
# Command to use to restart Puma. This should be just how to
|
446
|
+
# load Puma itself (ie. 'ruby -Ilib bin/puma'), not the arguments
|
447
|
+
# to Puma, as those are the same as the original process.
|
448
|
+
#
|
449
|
+
# @example
|
450
|
+
# restart_command '/u/app/lolcat/bin/restart_puma'
|
217
451
|
#
|
218
452
|
def restart_command(cmd)
|
219
453
|
@options[:restart_cmd] = cmd.to_s
|
220
454
|
end
|
221
455
|
|
222
|
-
# Store the pid of the server in the file at
|
456
|
+
# Store the pid of the server in the file at "path".
|
457
|
+
#
|
458
|
+
# @example
|
459
|
+
# pidfile '/u/apps/lolcat/tmp/pids/puma.pid'
|
460
|
+
#
|
223
461
|
def pidfile(path)
|
224
462
|
@options[:pidfile] = path.to_s
|
225
463
|
end
|
226
464
|
|
227
|
-
# Disable request logging
|
465
|
+
# Disable request logging, the inverse of `log_requests`.
|
466
|
+
#
|
467
|
+
# The default is +true+.
|
468
|
+
#
|
469
|
+
# @example
|
470
|
+
# quiet
|
228
471
|
#
|
229
472
|
def quiet(which=true)
|
230
473
|
@options[:log_requests] = !which
|
231
474
|
end
|
232
475
|
|
233
|
-
# Enable request logging
|
476
|
+
# Enable request logging, the inverse of `quiet`.
|
477
|
+
#
|
478
|
+
# The default is +false+.
|
479
|
+
#
|
480
|
+
# @example
|
481
|
+
# log_requests
|
234
482
|
#
|
235
483
|
def log_requests(which=true)
|
236
484
|
@options[:log_requests] = which
|
237
485
|
end
|
238
486
|
|
487
|
+
# Pass in a custom logging class instance
|
488
|
+
#
|
489
|
+
# @example
|
490
|
+
# custom_logger Logger.new('t.log')
|
491
|
+
#
|
492
|
+
def custom_logger(custom_logger)
|
493
|
+
@options[:custom_logger] = custom_logger
|
494
|
+
end
|
495
|
+
|
239
496
|
# Show debugging info
|
240
497
|
#
|
498
|
+
# The default is +false+.
|
499
|
+
#
|
500
|
+
# @example
|
501
|
+
# debug
|
502
|
+
#
|
241
503
|
def debug
|
242
504
|
@options[:debug] = true
|
243
505
|
end
|
244
506
|
|
245
507
|
# Load +path+ as a rackup file.
|
246
508
|
#
|
509
|
+
# The default is "config.ru".
|
510
|
+
#
|
511
|
+
# @example
|
512
|
+
# rackup '/u/apps/lolcat/config.ru'
|
513
|
+
#
|
247
514
|
def rackup(path)
|
248
|
-
@options[:rackup]
|
515
|
+
@options[:rackup] ||= path.to_s
|
249
516
|
end
|
250
517
|
|
251
|
-
#
|
518
|
+
# Allows setting `env['rack.url_scheme']`.
|
519
|
+
# Only necessary if X-Forwarded-Proto is not being set by your proxy
|
520
|
+
# Normal values are 'http' or 'https'.
|
252
521
|
#
|
253
|
-
def
|
254
|
-
@options[:
|
522
|
+
def rack_url_scheme(scheme=nil)
|
523
|
+
@options[:rack_url_scheme] = scheme
|
255
524
|
end
|
256
525
|
|
526
|
+
# Enable HTTP 103 Early Hints responses.
|
527
|
+
#
|
528
|
+
# The default is +nil+.
|
529
|
+
#
|
530
|
+
# @example
|
531
|
+
# early_hints
|
532
|
+
#
|
257
533
|
def early_hints(answer=true)
|
258
534
|
@options[:early_hints] = answer
|
259
535
|
end
|
260
536
|
|
261
|
-
# Redirect STDOUT and STDERR to files specified.
|
537
|
+
# Redirect +STDOUT+ and +STDERR+ to files specified. The +append+ parameter
|
538
|
+
# specifies whether the output is appended.
|
539
|
+
#
|
540
|
+
# The default is +false+.
|
541
|
+
#
|
542
|
+
# @example
|
543
|
+
# stdout_redirect '/app/lolcat/log/stdout', '/app/lolcat/log/stderr'
|
544
|
+
# @example
|
545
|
+
# stdout_redirect '/app/lolcat/log/stdout', '/app/lolcat/log/stderr', true
|
546
|
+
#
|
262
547
|
def stdout_redirect(stdout=nil, stderr=nil, append=false)
|
263
548
|
@options[:redirect_stdout] = stdout
|
264
549
|
@options[:redirect_stderr] = stderr
|
265
550
|
@options[:redirect_append] = append
|
266
551
|
end
|
267
552
|
|
268
|
-
|
269
|
-
|
553
|
+
def log_formatter(&block)
|
554
|
+
@options[:log_formatter] = block
|
555
|
+
end
|
556
|
+
|
557
|
+
# Configure the number of threads to use to answer requests.
|
558
|
+
#
|
559
|
+
# It can be a single fixed number, or a +min+ and a +max+.
|
560
|
+
#
|
561
|
+
# The default is the environment variables +PUMA_MIN_THREADS+ / +PUMA_MAX_THREADS+
|
562
|
+
# (or +MIN_THREADS+ / +MAX_THREADS+ if the +PUMA_+ variables aren't set).
|
270
563
|
#
|
271
|
-
|
564
|
+
# If these environment variables aren't set, the default is "0, 5" in MRI or "0, 16" for other interpreters.
|
565
|
+
#
|
566
|
+
# @example
|
567
|
+
# threads 5
|
568
|
+
# @example
|
569
|
+
# threads 0, 16
|
570
|
+
# @example
|
571
|
+
# threads 5, 5
|
572
|
+
#
|
573
|
+
def threads(min, max = min)
|
272
574
|
min = Integer(min)
|
273
575
|
max = Integer(max)
|
274
576
|
if min > max
|
@@ -283,114 +585,392 @@ module Puma
|
|
283
585
|
@options[:max_threads] = max
|
284
586
|
end
|
285
587
|
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
588
|
+
# Instead of using +bind+ and manually constructing a URI like:
|
589
|
+
#
|
590
|
+
# bind 'ssl://127.0.0.1:9292?key=key_path&cert=cert_path'
|
591
|
+
#
|
592
|
+
# you can use the this method.
|
593
|
+
#
|
594
|
+
# When binding on localhost you don't need to specify +cert+ and +key+,
|
595
|
+
# Puma will assume you are using the +localhost+ gem and try to load the
|
596
|
+
# appropriate files.
|
597
|
+
#
|
598
|
+
# When using the options hash parameter, the `reuse:` value is either
|
599
|
+
# `true`, which sets reuse 'on' with default values, or a hash, with `:size`
|
600
|
+
# and/or `:timeout` keys, each with integer values.
|
601
|
+
#
|
602
|
+
# The `cert:` options hash parameter can be the path to a certificate
|
603
|
+
# file including all intermediate certificates in PEM format.
|
604
|
+
#
|
605
|
+
# The `cert_pem:` options hash parameter can be String containing the
|
606
|
+
# cerificate and all intermediate certificates in PEM format.
|
607
|
+
#
|
608
|
+
# @example
|
609
|
+
# ssl_bind '127.0.0.1', '9292', {
|
610
|
+
# cert: path_to_cert,
|
611
|
+
# key: path_to_key,
|
612
|
+
# ssl_cipher_filter: cipher_filter, # optional
|
613
|
+
# ssl_ciphersuites: ciphersuites, # optional
|
614
|
+
# verify_mode: verify_mode, # default 'none'
|
615
|
+
# verification_flags: flags, # optional, not supported by JRuby
|
616
|
+
# reuse: true # optional
|
617
|
+
# }
|
618
|
+
#
|
619
|
+
# @example Using self-signed certificate with the +localhost+ gem:
|
620
|
+
# ssl_bind '127.0.0.1', '9292'
|
621
|
+
#
|
622
|
+
# @example Alternatively, you can provide +cert_pem+ and +key_pem+:
|
623
|
+
# ssl_bind '127.0.0.1', '9292', {
|
624
|
+
# cert_pem: File.read(path_to_cert),
|
625
|
+
# key_pem: File.read(path_to_key),
|
626
|
+
# reuse: {size: 2_000, timeout: 20} # optional
|
627
|
+
# }
|
628
|
+
#
|
629
|
+
# @example For JRuby, two keys are required: +keystore+ & +keystore_pass+
|
630
|
+
# ssl_bind '127.0.0.1', '9292', {
|
631
|
+
# keystore: path_to_keystore,
|
632
|
+
# keystore_pass: password,
|
633
|
+
# ssl_cipher_list: cipher_list, # optional
|
634
|
+
# verify_mode: verify_mode # default 'none'
|
635
|
+
# }
|
636
|
+
#
|
637
|
+
def ssl_bind(host, port, opts = {})
|
638
|
+
add_pem_values_to_options_store(opts)
|
639
|
+
bind self.class.ssl_bind_str(host, port, opts)
|
295
640
|
end
|
296
641
|
|
297
642
|
# Use +path+ as the file to store the server info state. This is
|
298
|
-
# used by pumactl to query and control the server.
|
643
|
+
# used by +pumactl+ to query and control the server.
|
644
|
+
#
|
645
|
+
# @example
|
646
|
+
# state_path '/u/apps/lolcat/tmp/pids/puma.state'
|
299
647
|
#
|
300
648
|
def state_path(path)
|
301
649
|
@options[:state] = path.to_s
|
302
650
|
end
|
303
651
|
|
304
|
-
#
|
652
|
+
# Use +permission+ to restrict permissions for the state file.
|
653
|
+
#
|
654
|
+
# @example
|
655
|
+
# state_permission 0600
|
656
|
+
#
|
657
|
+
# @version 5.0.0
|
658
|
+
#
|
659
|
+
def state_permission(permission)
|
660
|
+
@options[:state_permission] = permission
|
661
|
+
end
|
662
|
+
|
663
|
+
# How many worker processes to run. Typically this is set to
|
664
|
+
# the number of available cores.
|
665
|
+
#
|
666
|
+
# The default is the value of the environment variable +WEB_CONCURRENCY+ if
|
667
|
+
# set, otherwise 0.
|
668
|
+
#
|
669
|
+
# @note Cluster mode only.
|
670
|
+
#
|
671
|
+
# @example
|
672
|
+
# workers 2
|
673
|
+
#
|
674
|
+
# @see Puma::Cluster
|
305
675
|
#
|
306
676
|
def workers(count)
|
307
677
|
@options[:workers] = count.to_i
|
308
678
|
end
|
309
679
|
|
310
|
-
#
|
680
|
+
# Disable warning message when running in cluster mode with a single worker.
|
681
|
+
#
|
682
|
+
# Cluster mode has some overhead of running an additional 'control' process
|
683
|
+
# in order to manage the cluster. If only running a single worker it is
|
684
|
+
# likely not worth paying that overhead vs running in single mode with
|
685
|
+
# additional threads instead.
|
686
|
+
#
|
687
|
+
# There are some scenarios where running cluster mode with a single worker
|
688
|
+
# may still be warranted and valid under certain deployment scenarios, see
|
689
|
+
# https://github.com/puma/puma/issues/2534
|
690
|
+
#
|
691
|
+
# Moving from workers = 1 to workers = 0 will save 10-30% of memory use.
|
692
|
+
#
|
693
|
+
# The default is +false+.
|
694
|
+
#
|
695
|
+
# @note Cluster mode only.
|
696
|
+
#
|
697
|
+
# @example
|
698
|
+
# silence_single_worker_warning
|
699
|
+
#
|
700
|
+
def silence_single_worker_warning
|
701
|
+
@options[:silence_single_worker_warning] = true
|
702
|
+
end
|
703
|
+
|
704
|
+
# Disable warning message when running single mode with callback hook defined.
|
705
|
+
#
|
706
|
+
# The default is +false+.
|
707
|
+
#
|
708
|
+
# @example
|
709
|
+
# silence_fork_callback_warning
|
710
|
+
#
|
711
|
+
def silence_fork_callback_warning
|
712
|
+
@options[:silence_fork_callback_warning] = true
|
713
|
+
end
|
714
|
+
|
715
|
+
# Code to run immediately before master process
|
311
716
|
# forks workers (once on boot). These hooks can block if necessary
|
312
|
-
# to wait for background operations unknown to
|
717
|
+
# to wait for background operations unknown to Puma to finish before
|
313
718
|
# the process terminates.
|
314
|
-
# This can be used to close any connections to remote servers (database,
|
315
|
-
# that were opened when preloading the code
|
719
|
+
# This can be used to close any connections to remote servers (database,
|
720
|
+
# Redis, ...) that were opened when preloading the code.
|
721
|
+
#
|
722
|
+
# This can be called multiple times to add several hooks.
|
723
|
+
#
|
724
|
+
# @note Cluster mode only.
|
316
725
|
#
|
317
|
-
#
|
726
|
+
# @example
|
727
|
+
# before_fork do
|
728
|
+
# puts "Starting workers..."
|
729
|
+
# end
|
318
730
|
#
|
319
731
|
def before_fork(&block)
|
320
|
-
|
321
|
-
|
732
|
+
warn_if_in_single_mode('before_fork')
|
733
|
+
|
734
|
+
process_hook :before_fork, nil, block, 'before_fork'
|
322
735
|
end
|
323
736
|
|
324
|
-
#
|
737
|
+
# Code to run in a worker when it boots to setup
|
325
738
|
# the process before booting the app.
|
326
739
|
#
|
327
|
-
# This can be called multiple times to add hooks.
|
740
|
+
# This can be called multiple times to add several hooks.
|
741
|
+
#
|
742
|
+
# @note Cluster mode only.
|
743
|
+
#
|
744
|
+
# @example
|
745
|
+
# on_worker_boot do
|
746
|
+
# puts 'Before worker boot...'
|
747
|
+
# end
|
328
748
|
#
|
329
|
-
def on_worker_boot(&block)
|
330
|
-
|
331
|
-
|
749
|
+
def on_worker_boot(key = nil, &block)
|
750
|
+
warn_if_in_single_mode('on_worker_boot')
|
751
|
+
|
752
|
+
process_hook :before_worker_boot, key, block, 'on_worker_boot'
|
332
753
|
end
|
333
754
|
|
334
|
-
#
|
335
|
-
# down (after it has finished processing HTTP requests).
|
755
|
+
# Code to run immediately before a worker shuts
|
756
|
+
# down (after it has finished processing HTTP requests). The worker's
|
757
|
+
# index is passed as an argument. These hooks
|
336
758
|
# can block if necessary to wait for background operations unknown
|
337
|
-
# to
|
759
|
+
# to Puma to finish before the process terminates.
|
760
|
+
#
|
761
|
+
# This can be called multiple times to add several hooks.
|
338
762
|
#
|
339
|
-
#
|
763
|
+
# @note Cluster mode only.
|
340
764
|
#
|
341
|
-
|
342
|
-
|
343
|
-
|
765
|
+
# @example
|
766
|
+
# on_worker_shutdown do
|
767
|
+
# puts 'On worker shutdown...'
|
768
|
+
# end
|
769
|
+
#
|
770
|
+
def on_worker_shutdown(key = nil, &block)
|
771
|
+
warn_if_in_single_mode('on_worker_shutdown')
|
772
|
+
|
773
|
+
process_hook :before_worker_shutdown, key, block, 'on_worker_shutdown'
|
344
774
|
end
|
345
775
|
|
346
|
-
#
|
347
|
-
#
|
776
|
+
# Code to run in the master right before a worker is started. The worker's
|
777
|
+
# index is passed as an argument.
|
778
|
+
#
|
779
|
+
# This can be called multiple times to add several hooks.
|
348
780
|
#
|
349
|
-
#
|
781
|
+
# @note Cluster mode only.
|
782
|
+
#
|
783
|
+
# @example
|
784
|
+
# on_worker_fork do
|
785
|
+
# puts 'Before worker fork...'
|
786
|
+
# end
|
350
787
|
#
|
351
788
|
def on_worker_fork(&block)
|
352
|
-
|
353
|
-
|
789
|
+
warn_if_in_single_mode('on_worker_fork')
|
790
|
+
|
791
|
+
process_hook :before_worker_fork, nil, block, 'on_worker_fork'
|
354
792
|
end
|
355
793
|
|
356
|
-
#
|
357
|
-
#
|
794
|
+
# Code to run in the master after a worker has been started. The worker's
|
795
|
+
# index is passed as an argument.
|
796
|
+
#
|
797
|
+
# This is called everytime a worker is to be started.
|
358
798
|
#
|
359
|
-
#
|
799
|
+
# @note Cluster mode only.
|
800
|
+
#
|
801
|
+
# @example
|
802
|
+
# after_worker_fork do
|
803
|
+
# puts 'After worker fork...'
|
804
|
+
# end
|
360
805
|
#
|
361
806
|
def after_worker_fork(&block)
|
362
|
-
|
363
|
-
|
807
|
+
warn_if_in_single_mode('after_worker_fork')
|
808
|
+
|
809
|
+
process_hook :after_worker_fork, nil, block, 'after_worker_fork'
|
364
810
|
end
|
365
811
|
|
366
812
|
alias_method :after_worker_boot, :after_worker_fork
|
367
813
|
|
368
|
-
#
|
369
|
-
|
370
|
-
|
814
|
+
# Code to run after puma is booted (works for both: single and clustered)
|
815
|
+
#
|
816
|
+
# @example
|
817
|
+
# on_booted do
|
818
|
+
# puts 'After booting...'
|
819
|
+
# end
|
820
|
+
#
|
821
|
+
def on_booted(&block)
|
822
|
+
@config.options[:events].on_booted(&block)
|
823
|
+
end
|
824
|
+
|
825
|
+
# Code to run after puma is stopped (works for both: single and clustered)
|
826
|
+
#
|
827
|
+
# @example
|
828
|
+
# on_stopped do
|
829
|
+
# puts 'After stopping...'
|
830
|
+
# end
|
831
|
+
#
|
832
|
+
def on_stopped(&block)
|
833
|
+
@config.options[:events].on_stopped(&block)
|
834
|
+
end
|
835
|
+
|
836
|
+
# When `fork_worker` is enabled, code to run in Worker 0
|
837
|
+
# before all other workers are re-forked from this process,
|
838
|
+
# after the server has temporarily stopped serving requests
|
839
|
+
# (once per complete refork cycle).
|
840
|
+
#
|
841
|
+
# This can be used to trigger extra garbage-collection to maximize
|
842
|
+
# copy-on-write efficiency, or close any connections to remote servers
|
843
|
+
# (database, Redis, ...) that were opened while the server was running.
|
844
|
+
#
|
845
|
+
# This can be called multiple times to add several hooks.
|
846
|
+
#
|
847
|
+
# @note Cluster mode with `fork_worker` enabled only.
|
848
|
+
#
|
849
|
+
# @example
|
850
|
+
# on_refork do
|
851
|
+
# 3.times {GC.start}
|
852
|
+
# end
|
853
|
+
#
|
854
|
+
# @version 5.0.0
|
855
|
+
#
|
856
|
+
def on_refork(key = nil, &block)
|
857
|
+
warn_if_in_single_mode('on_refork')
|
858
|
+
|
859
|
+
process_hook :before_refork, key, block, 'on_refork'
|
860
|
+
end
|
861
|
+
|
862
|
+
# When `fork_worker` is enabled, code to run in Worker 0
|
863
|
+
# after all other workers are re-forked from this process,
|
864
|
+
# after the server has temporarily stopped serving requests
|
865
|
+
# (once per complete refork cycle).
|
866
|
+
#
|
867
|
+
# This can be used to re-open any connections to remote servers
|
868
|
+
# (database, Redis, ...) that were closed via on_refork.
|
869
|
+
#
|
870
|
+
# This can be called multiple times to add several hooks.
|
871
|
+
#
|
872
|
+
# @note Cluster mode with `fork_worker` enabled only.
|
873
|
+
#
|
874
|
+
# @example
|
875
|
+
# after_refork do
|
876
|
+
# puts 'After refork...'
|
877
|
+
# end
|
878
|
+
#
|
879
|
+
def after_refork(key = nil, &block)
|
880
|
+
process_hook :after_refork, key, block, 'after_refork'
|
881
|
+
end
|
882
|
+
|
883
|
+
# Provide a block to be executed just before a thread is added to the thread
|
884
|
+
# pool. Be careful: while the block executes, thread creation is delayed, and
|
885
|
+
# probably a request will have to wait too! The new thread will not be added to
|
886
|
+
# the threadpool until the provided block returns.
|
887
|
+
#
|
888
|
+
# Return values are ignored.
|
889
|
+
# Raising an exception will log a warning.
|
890
|
+
#
|
891
|
+
# This hook is useful for doing something when the thread pool grows.
|
892
|
+
#
|
893
|
+
# This can be called multiple times to add several hooks.
|
894
|
+
#
|
895
|
+
# @example
|
896
|
+
# on_thread_start do
|
897
|
+
# puts 'On thread start...'
|
898
|
+
# end
|
899
|
+
#
|
900
|
+
def on_thread_start(&block)
|
901
|
+
process_hook :before_thread_start, nil, block, 'on_thread_start'
|
902
|
+
end
|
903
|
+
|
904
|
+
# Provide a block to be executed after a thread is trimmed from the thread
|
905
|
+
# pool. Be careful: while this block executes, Puma's main loop is
|
906
|
+
# blocked, so no new requests will be picked up.
|
907
|
+
#
|
908
|
+
# This hook only runs when a thread in the threadpool is trimmed by Puma.
|
909
|
+
# It does not run when a thread dies due to exceptions or any other cause.
|
910
|
+
#
|
911
|
+
# Return values are ignored.
|
912
|
+
# Raising an exception will log a warning.
|
913
|
+
#
|
914
|
+
# This hook is useful for cleaning up thread local resources when a thread
|
915
|
+
# is trimmed.
|
916
|
+
#
|
917
|
+
# This can be called multiple times to add several hooks.
|
918
|
+
#
|
919
|
+
# @example
|
920
|
+
# on_thread_exit do
|
921
|
+
# puts 'On thread exit...'
|
922
|
+
# end
|
923
|
+
#
|
924
|
+
def on_thread_exit(&block)
|
925
|
+
process_hook :before_thread_exit, nil, block, 'on_thread_exit'
|
371
926
|
end
|
372
927
|
|
373
|
-
#
|
374
|
-
|
375
|
-
|
376
|
-
|
928
|
+
# Code to run out-of-band when the worker is idle.
|
929
|
+
# These hooks run immediately after a request has finished
|
930
|
+
# processing and there are no busy threads on the worker.
|
931
|
+
# The worker doesn't accept new requests until this code finishes.
|
932
|
+
#
|
933
|
+
# This hook is useful for running out-of-band garbage collection
|
934
|
+
# or scheduling asynchronous tasks to execute after a response.
|
935
|
+
#
|
936
|
+
# This can be called multiple times to add several hooks.
|
937
|
+
#
|
938
|
+
def out_of_band(&block)
|
939
|
+
process_hook :out_of_band, nil, block, 'out_of_band'
|
377
940
|
end
|
378
941
|
|
379
|
-
#
|
380
|
-
|
381
|
-
|
942
|
+
# The directory to operate out of.
|
943
|
+
#
|
944
|
+
# The default is the current directory.
|
945
|
+
#
|
946
|
+
# @example
|
947
|
+
# directory '/u/apps/lolcat'
|
948
|
+
#
|
949
|
+
def directory(dir)
|
950
|
+
@options[:directory] = dir.to_s
|
382
951
|
end
|
383
952
|
|
384
|
-
#
|
385
|
-
#
|
386
|
-
#
|
953
|
+
# Preload the application before starting the workers; this conflicts with
|
954
|
+
# phased restart feature.
|
955
|
+
#
|
956
|
+
# The default is +true+ if your app uses more than 1 worker.
|
957
|
+
#
|
958
|
+
# @note Cluster mode only.
|
959
|
+
#
|
960
|
+
# @example
|
961
|
+
# preload_app!
|
387
962
|
#
|
388
963
|
def preload_app!(answer=true)
|
389
964
|
@options[:preload_app] = answer
|
390
965
|
end
|
391
966
|
|
392
|
-
# Use +obj+ or +block+ as the low level error handler. This allows
|
393
|
-
# change the default error on the server.
|
967
|
+
# Use +obj+ or +block+ as the low level error handler. This allows the
|
968
|
+
# configuration file to change the default error on the server.
|
969
|
+
#
|
970
|
+
# @example
|
971
|
+
# lowlevel_error_handler do |err|
|
972
|
+
# [200, {}, ["error page"]]
|
973
|
+
# end
|
394
974
|
#
|
395
975
|
def lowlevel_error_handler(obj=nil, &block)
|
396
976
|
obj ||= block
|
@@ -401,43 +981,178 @@ module Puma
|
|
401
981
|
# This option is used to allow your app and its gems to be
|
402
982
|
# properly reloaded when not using preload.
|
403
983
|
#
|
404
|
-
# When set, if
|
984
|
+
# When set, if Puma detects that it's been invoked in the
|
405
985
|
# context of Bundler, it will cleanup the environment and
|
406
986
|
# re-run itself outside the Bundler environment, but directly
|
407
987
|
# using the files that Bundler has setup.
|
408
988
|
#
|
409
|
-
# This means that
|
989
|
+
# This means that Puma is now decoupled from your Bundler
|
410
990
|
# context and when each worker loads, it will be loading a
|
411
991
|
# new Bundler context and thus can float around as the release
|
412
992
|
# dictates.
|
993
|
+
#
|
994
|
+
# @note This is incompatible with +preload_app!+.
|
995
|
+
# @note This is only supported for RubyGems 2.2+
|
996
|
+
#
|
997
|
+
# @see extra_runtime_dependencies
|
998
|
+
#
|
413
999
|
def prune_bundler(answer=true)
|
414
1000
|
@options[:prune_bundler] = answer
|
415
1001
|
end
|
416
1002
|
|
417
|
-
#
|
1003
|
+
# Raises a SignalException when SIGTERM is received. In environments where
|
1004
|
+
# SIGTERM is something expected, you can suppress these with this option.
|
1005
|
+
#
|
1006
|
+
# This can be useful for example in Kubernetes, where rolling restart is
|
1007
|
+
# guaranteed usually on the infrastructure level.
|
1008
|
+
#
|
1009
|
+
# The default is +true+.
|
1010
|
+
#
|
1011
|
+
# @example
|
1012
|
+
# raise_exception_on_sigterm false
|
1013
|
+
#
|
1014
|
+
# @see Puma::Launcher#setup_signals
|
1015
|
+
# @see Puma::Cluster#setup_signals
|
1016
|
+
#
|
1017
|
+
def raise_exception_on_sigterm(answer=true)
|
1018
|
+
@options[:raise_exception_on_sigterm] = answer
|
1019
|
+
end
|
1020
|
+
|
1021
|
+
# When using prune_bundler, if extra runtime dependencies need to be loaded to
|
1022
|
+
# initialize your app, then this setting can be used. This includes any Puma plugins.
|
1023
|
+
#
|
1024
|
+
# Before bundler is pruned, the gem names supplied will be looked up in the bundler
|
1025
|
+
# context and then loaded again after bundler is pruned.
|
1026
|
+
# Only applies if prune_bundler is used.
|
1027
|
+
#
|
1028
|
+
# @example
|
1029
|
+
# extra_runtime_dependencies ['gem_name_1', 'gem_name_2']
|
1030
|
+
# @example
|
1031
|
+
# extra_runtime_dependencies ['puma_worker_killer', 'puma-heroku']
|
1032
|
+
#
|
1033
|
+
# @see Puma::Launcher#extra_runtime_deps_directories
|
1034
|
+
#
|
1035
|
+
def extra_runtime_dependencies(answer = [])
|
1036
|
+
@options[:extra_runtime_dependencies] = Array(answer)
|
1037
|
+
end
|
1038
|
+
|
1039
|
+
# Additional text to display in process listing.
|
1040
|
+
#
|
1041
|
+
# If you do not specify a tag, Puma will infer it. If you do not want Puma
|
1042
|
+
# to add a tag, use an empty string.
|
1043
|
+
#
|
1044
|
+
# The default is the current file or directory base name.
|
1045
|
+
#
|
1046
|
+
# @example
|
1047
|
+
# tag 'app name'
|
1048
|
+
# @example
|
1049
|
+
# tag ''
|
1050
|
+
#
|
418
1051
|
def tag(string)
|
419
1052
|
@options[:tag] = string.to_s
|
420
1053
|
end
|
421
1054
|
|
422
|
-
#
|
423
|
-
#
|
424
|
-
#
|
425
|
-
#
|
1055
|
+
# Change the default interval for checking workers.
|
1056
|
+
#
|
1057
|
+
# The default is 5 seconds.
|
1058
|
+
#
|
1059
|
+
# @note Cluster mode only.
|
1060
|
+
#
|
1061
|
+
# @example
|
1062
|
+
# worker_check_interval 10
|
1063
|
+
#
|
1064
|
+
# @see Puma::Cluster#check_workers
|
1065
|
+
#
|
1066
|
+
def worker_check_interval(interval)
|
1067
|
+
@options[:worker_check_interval] = Integer(interval)
|
1068
|
+
end
|
1069
|
+
|
1070
|
+
# Verifies that all workers have checked in to the master process within
|
1071
|
+
# the given timeout. If not the worker process will be restarted. This is
|
1072
|
+
# not a request timeout, it is to protect against a hung or dead process.
|
1073
|
+
# Setting this value will not protect against slow requests.
|
1074
|
+
#
|
1075
|
+
# This value must be greater than worker_check_interval.
|
1076
|
+
#
|
1077
|
+
# The default is 60 seconds.
|
1078
|
+
#
|
1079
|
+
# @note Cluster mode only.
|
1080
|
+
#
|
1081
|
+
# @example
|
1082
|
+
# worker_timeout 60
|
1083
|
+
#
|
1084
|
+
# @see Puma::Cluster::Worker#ping_timeout
|
1085
|
+
#
|
426
1086
|
def worker_timeout(timeout)
|
1087
|
+
timeout = Integer(timeout)
|
1088
|
+
min = @options.fetch(:worker_check_interval, Configuration::DEFAULTS[:worker_check_interval])
|
1089
|
+
|
1090
|
+
if timeout <= min
|
1091
|
+
raise "The minimum worker_timeout must be greater than the worker reporting interval (#{min})"
|
1092
|
+
end
|
1093
|
+
|
427
1094
|
@options[:worker_timeout] = timeout
|
428
1095
|
end
|
429
1096
|
|
430
|
-
#
|
1097
|
+
# Change the default worker timeout for booting.
|
1098
|
+
#
|
1099
|
+
# The default is the value of `worker_timeout`.
|
1100
|
+
#
|
1101
|
+
# @note Cluster mode only.
|
1102
|
+
#
|
1103
|
+
# @example
|
1104
|
+
# worker_boot_timeout 60
|
1105
|
+
#
|
1106
|
+
# @see Puma::Cluster::Worker#ping_timeout
|
1107
|
+
#
|
431
1108
|
def worker_boot_timeout(timeout)
|
432
|
-
@options[:worker_boot_timeout] = timeout
|
1109
|
+
@options[:worker_boot_timeout] = Integer(timeout)
|
433
1110
|
end
|
434
1111
|
|
435
|
-
#
|
1112
|
+
# Set the timeout for worker shutdown.
|
1113
|
+
#
|
1114
|
+
# The default is 60 seconds.
|
1115
|
+
#
|
1116
|
+
# @note Cluster mode only.
|
1117
|
+
#
|
1118
|
+
# @example
|
1119
|
+
# worker_shutdown_timeout 90
|
1120
|
+
#
|
1121
|
+
# @see Puma::Cluster::Worker#term
|
1122
|
+
#
|
436
1123
|
def worker_shutdown_timeout(timeout)
|
437
|
-
@options[:worker_shutdown_timeout] = timeout
|
1124
|
+
@options[:worker_shutdown_timeout] = Integer(timeout)
|
438
1125
|
end
|
439
1126
|
|
440
|
-
#
|
1127
|
+
# Set the strategy for worker culling.
|
1128
|
+
#
|
1129
|
+
# There are two possible values:
|
1130
|
+
#
|
1131
|
+
# 1. **:youngest** - the youngest workers (i.e. the workers that were
|
1132
|
+
# the most recently started) will be culled.
|
1133
|
+
# 2. **:oldest** - the oldest workers (i.e. the workers that were started
|
1134
|
+
# the longest time ago) will be culled.
|
1135
|
+
#
|
1136
|
+
# The default is +:youngest+.
|
1137
|
+
#
|
1138
|
+
# @note Cluster mode only.
|
1139
|
+
#
|
1140
|
+
# @example
|
1141
|
+
# worker_culling_strategy :oldest
|
1142
|
+
#
|
1143
|
+
# @see Puma::Cluster#cull_workers
|
1144
|
+
#
|
1145
|
+
def worker_culling_strategy(strategy)
|
1146
|
+
stategy = strategy.to_sym
|
1147
|
+
|
1148
|
+
if ![:youngest, :oldest].include?(strategy)
|
1149
|
+
raise "Invalid value for worker_culling_strategy - #{stategy}"
|
1150
|
+
end
|
1151
|
+
|
1152
|
+
@options[:worker_culling_strategy] = strategy
|
1153
|
+
end
|
1154
|
+
|
1155
|
+
# When set to true, workers accept all requests
|
441
1156
|
# and queue them before passing them to the handlers.
|
442
1157
|
# When set to false, each worker process accepts exactly as
|
443
1158
|
# many requests as it is configured to simultaneously handle.
|
@@ -449,7 +1164,12 @@ module Puma
|
|
449
1164
|
# Note that setting this to false disables HTTP keepalive and
|
450
1165
|
# slow clients will occupy a handler thread while the request
|
451
1166
|
# is being sent. A reverse proxy, such as nginx, can handle
|
452
|
-
# slow clients and queue requests before they reach
|
1167
|
+
# slow clients and queue requests before they reach Puma.
|
1168
|
+
#
|
1169
|
+
# The default is +true+.
|
1170
|
+
#
|
1171
|
+
# @see Puma::Server
|
1172
|
+
#
|
453
1173
|
def queue_requests(answer=true)
|
454
1174
|
@options[:queue_requests] = answer
|
455
1175
|
end
|
@@ -457,29 +1177,59 @@ module Puma
|
|
457
1177
|
# When a shutdown is requested, the backtraces of all the
|
458
1178
|
# threads will be written to $stdout. This can help figure
|
459
1179
|
# out why shutdown is hanging.
|
1180
|
+
#
|
460
1181
|
def shutdown_debug(val=true)
|
461
1182
|
@options[:shutdown_debug] = val
|
462
1183
|
end
|
463
1184
|
|
1185
|
+
|
1186
|
+
# Attempts to route traffic to less-busy workers by causing them to delay
|
1187
|
+
# listening on the socket, allowing workers which are not processing any
|
1188
|
+
# requests to pick up new requests first.
|
1189
|
+
#
|
1190
|
+
# The default is 0.005 seconds.
|
1191
|
+
#
|
1192
|
+
# Only works on MRI. For all other interpreters, this setting does nothing.
|
1193
|
+
#
|
1194
|
+
# @see Puma::Server#handle_servers
|
1195
|
+
# @see Puma::ThreadPool#wait_for_less_busy_worker
|
1196
|
+
#
|
1197
|
+
# @version 5.0.0
|
1198
|
+
#
|
1199
|
+
def wait_for_less_busy_worker(val=0.005)
|
1200
|
+
@options[:wait_for_less_busy_worker] = val.to_f
|
1201
|
+
end
|
1202
|
+
|
464
1203
|
# Control how the remote address of the connection is set. This
|
465
1204
|
# is configurable because to calculate the true socket peer address
|
466
1205
|
# a kernel syscall is required which for very fast rack handlers
|
467
1206
|
# slows down the handling significantly.
|
468
1207
|
#
|
469
|
-
# There are
|
470
|
-
#
|
471
|
-
#
|
472
|
-
#
|
473
|
-
#
|
474
|
-
#
|
475
|
-
#
|
476
|
-
#
|
477
|
-
#
|
478
|
-
#
|
479
|
-
#
|
480
|
-
#
|
481
|
-
#
|
482
|
-
#
|
1208
|
+
# There are 5 possible values:
|
1209
|
+
#
|
1210
|
+
# 1. **:socket** - read the peername from the socket using the
|
1211
|
+
# syscall. This is the normal behavior. If this fails for any reason (e.g.,
|
1212
|
+
# if the peer disconnects between the connection being accepted and the getpeername
|
1213
|
+
# system call), Puma will return "0.0.0.0"
|
1214
|
+
# 2. **:localhost** - set the remote address to "127.0.0.1"
|
1215
|
+
# 3. **header: <http_header>**- set the remote address to the value of the
|
1216
|
+
# provided http header. For instance:
|
1217
|
+
# `set_remote_address header: "X-Real-IP"`.
|
1218
|
+
# Only the first word (as separated by spaces or comma) is used, allowing
|
1219
|
+
# headers such as X-Forwarded-For to be used as well. If this header is absent,
|
1220
|
+
# Puma will fall back to the behavior of :socket
|
1221
|
+
# 4. **proxy_protocol: :v1**- set the remote address to the value read from the
|
1222
|
+
# HAproxy PROXY protocol, version 1. If the request does not have the PROXY
|
1223
|
+
# protocol attached to it, will fall back to :socket
|
1224
|
+
# 5. **\<Any string\>** - this allows you to hardcode remote address to any value
|
1225
|
+
# you wish. Because Puma never uses this field anyway, it's format is
|
1226
|
+
# entirely in your hands.
|
1227
|
+
#
|
1228
|
+
# The default is +:socket+.
|
1229
|
+
#
|
1230
|
+
# @example
|
1231
|
+
# set_remote_address :localhost
|
1232
|
+
#
|
483
1233
|
def set_remote_address(val=:socket)
|
484
1234
|
case val
|
485
1235
|
when :socket
|
@@ -493,7 +1243,14 @@ module Puma
|
|
493
1243
|
when Hash
|
494
1244
|
if hdr = val[:header]
|
495
1245
|
@options[:remote_address] = :header
|
496
|
-
@options[:remote_address_header] = "HTTP_" + hdr.upcase.
|
1246
|
+
@options[:remote_address_header] = "HTTP_" + hdr.upcase.tr("-", "_")
|
1247
|
+
elsif protocol_version = val[:proxy_protocol]
|
1248
|
+
@options[:remote_address] = :proxy_protocol
|
1249
|
+
protocol_version = protocol_version.downcase.to_sym
|
1250
|
+
unless [:v1].include?(protocol_version)
|
1251
|
+
raise "Invalid value for proxy_protocol - #{protocol_version.inspect}"
|
1252
|
+
end
|
1253
|
+
@options[:remote_address_proxy_protocol] = protocol_version
|
497
1254
|
else
|
498
1255
|
raise "Invalid value for set_remote_address - #{val.inspect}"
|
499
1256
|
end
|
@@ -502,5 +1259,187 @@ module Puma
|
|
502
1259
|
end
|
503
1260
|
end
|
504
1261
|
|
1262
|
+
# When enabled, workers will be forked from worker 0 instead of from the master process.
|
1263
|
+
# This option is similar to `preload_app` because the app is preloaded before forking,
|
1264
|
+
# but it is compatible with phased restart.
|
1265
|
+
#
|
1266
|
+
# This option also enables the `refork` command (SIGURG), which optimizes copy-on-write performance
|
1267
|
+
# in a running app.
|
1268
|
+
#
|
1269
|
+
# A refork will automatically trigger once after the specified number of requests
|
1270
|
+
# (default 1000), or pass 0 to disable auto refork.
|
1271
|
+
#
|
1272
|
+
# @note Cluster mode only.
|
1273
|
+
#
|
1274
|
+
# @version 5.0.0
|
1275
|
+
#
|
1276
|
+
def fork_worker(after_requests=1000)
|
1277
|
+
@options[:fork_worker] = Integer(after_requests)
|
1278
|
+
end
|
1279
|
+
|
1280
|
+
# The number of requests to attempt inline before sending a client back to
|
1281
|
+
# the reactor to be subject to normal ordering.
|
1282
|
+
#
|
1283
|
+
# The default is 10.
|
1284
|
+
#
|
1285
|
+
# @example
|
1286
|
+
# max_fast_inline 20
|
1287
|
+
#
|
1288
|
+
def max_fast_inline(num_of_requests)
|
1289
|
+
@options[:max_fast_inline] = Float(num_of_requests)
|
1290
|
+
end
|
1291
|
+
|
1292
|
+
# When `true`, keep-alive connections are maintained on inbound requests.
|
1293
|
+
# Enabling this setting reduces the number of TCP operations, reducing response
|
1294
|
+
# times for connections that can send multiple requests in a single connection.
|
1295
|
+
#
|
1296
|
+
# When Puma receives more incoming connections than available Puma threads,
|
1297
|
+
# enabling the keep-alive behavior may result in processing requests out-of-order,
|
1298
|
+
# increasing overall response time variance. Increased response time variance
|
1299
|
+
# means that the overall average of response times might not change, but more
|
1300
|
+
# outliers will exist. Those long-tail outliers may significantly affect response
|
1301
|
+
# times for some processed requests.
|
1302
|
+
#
|
1303
|
+
# When `false`, Puma closes the connection after each request, requiring the
|
1304
|
+
# client to open a new request. Disabling this setting guarantees that requests
|
1305
|
+
# will be processed in the order they are fully received, decreasing response
|
1306
|
+
# variance and eliminating long-tail outliers caused by keep-alive behavior.
|
1307
|
+
# The trade-off is that the number of TCP operations required will increase.
|
1308
|
+
#
|
1309
|
+
# The default is +true+.
|
1310
|
+
#
|
1311
|
+
# @example
|
1312
|
+
# enable_keep_alives false
|
1313
|
+
#
|
1314
|
+
def enable_keep_alives(enabled=true)
|
1315
|
+
@options[:enable_keep_alives] = enabled
|
1316
|
+
end
|
1317
|
+
|
1318
|
+
# Specify the backend for the IO selector.
|
1319
|
+
#
|
1320
|
+
# Provided values will be passed directly to +NIO::Selector.new+, with the
|
1321
|
+
# exception of +:auto+ which will let nio4r choose the backend.
|
1322
|
+
#
|
1323
|
+
# Check the documentation of +NIO::Selector.backends+ for the list of valid
|
1324
|
+
# options. Note that the available options on your system will depend on the
|
1325
|
+
# operating system. If you want to use the pure Ruby backend (not
|
1326
|
+
# recommended due to its comparatively low performance), set environment
|
1327
|
+
# variable +NIO4R_PURE+ to +true+.
|
1328
|
+
#
|
1329
|
+
# The default is +:auto+.
|
1330
|
+
#
|
1331
|
+
# @see https://github.com/socketry/nio4r/blob/master/lib/nio/selector.rb
|
1332
|
+
#
|
1333
|
+
def io_selector_backend(backend)
|
1334
|
+
@options[:io_selector_backend] = backend.to_sym
|
1335
|
+
end
|
1336
|
+
|
1337
|
+
# Ensures +STDOUT+ and +STDERR+ is immediately flushed to the underlying
|
1338
|
+
# operating system and is not buffered internally
|
1339
|
+
#
|
1340
|
+
# The default is +true+.
|
1341
|
+
#
|
1342
|
+
# @example
|
1343
|
+
# mutate_stdout_and_stderr_to_sync_on_write false
|
1344
|
+
#
|
1345
|
+
def mutate_stdout_and_stderr_to_sync_on_write(enabled=true)
|
1346
|
+
@options[:mutate_stdout_and_stderr_to_sync_on_write] = enabled
|
1347
|
+
end
|
1348
|
+
|
1349
|
+
# Specify how big the request payload should be, in bytes.
|
1350
|
+
# This limit is compared against Content-Length HTTP header.
|
1351
|
+
# If the payload size (CONTENT_LENGTH) is larger than http_content_length_limit,
|
1352
|
+
# HTTP 413 status code is returned.
|
1353
|
+
#
|
1354
|
+
# When no Content-Length http header is present, it is compared against the
|
1355
|
+
# size of the body of the request.
|
1356
|
+
#
|
1357
|
+
# The default is +nil+.
|
1358
|
+
#
|
1359
|
+
# @example
|
1360
|
+
# http_content_length_limit 2_000_000_000
|
1361
|
+
#
|
1362
|
+
def http_content_length_limit(limit)
|
1363
|
+
@options[:http_content_length_limit] = limit
|
1364
|
+
end
|
1365
|
+
|
1366
|
+
# Supported http methods, which will replace `Puma::Const::SUPPORTED_HTTP_METHODS`.
|
1367
|
+
# The value of `:any` will allows all methods, otherwise, the value must be
|
1368
|
+
# an array of strings. Note that methods are all uppercase.
|
1369
|
+
#
|
1370
|
+
# `Puma::Const::SUPPORTED_HTTP_METHODS` is conservative, if you want a
|
1371
|
+
# complete set of methods, the methods defined by the
|
1372
|
+
# [IANA Method Registry](https://www.iana.org/assignments/http-methods/http-methods.xhtml)
|
1373
|
+
# are pre-defined as the constant `Puma::Const::IANA_HTTP_METHODS`.
|
1374
|
+
#
|
1375
|
+
# @note If the `methods` value is `:any`, no method check with be performed,
|
1376
|
+
# similar to Puma v5 and earlier.
|
1377
|
+
#
|
1378
|
+
# @example Adds 'PROPFIND' to existing supported methods
|
1379
|
+
# supported_http_methods(Puma::Const::SUPPORTED_HTTP_METHODS + ['PROPFIND'])
|
1380
|
+
# @example Restricts methods to the array elements
|
1381
|
+
# supported_http_methods %w[HEAD GET POST PUT DELETE OPTIONS PROPFIND]
|
1382
|
+
# @example Restricts methods to the methods in the IANA Registry
|
1383
|
+
# supported_http_methods Puma::Const::IANA_HTTP_METHODS
|
1384
|
+
# @example Allows any method
|
1385
|
+
# supported_http_methods :any
|
1386
|
+
#
|
1387
|
+
def supported_http_methods(methods)
|
1388
|
+
if methods == :any
|
1389
|
+
@options[:supported_http_methods] = :any
|
1390
|
+
elsif Array === methods && methods == (ary = methods.grep(String).uniq) &&
|
1391
|
+
!ary.empty?
|
1392
|
+
@options[:supported_http_methods] = ary
|
1393
|
+
else
|
1394
|
+
raise "supported_http_methods must be ':any' or a unique array of strings"
|
1395
|
+
end
|
1396
|
+
end
|
1397
|
+
|
1398
|
+
private
|
1399
|
+
|
1400
|
+
# To avoid adding cert_pem and key_pem as URI params, we store them on the
|
1401
|
+
# options[:store] from where Puma binder knows how to find and extract them.
|
1402
|
+
#
|
1403
|
+
def add_pem_values_to_options_store(opts)
|
1404
|
+
return if defined?(JRUBY_VERSION)
|
1405
|
+
|
1406
|
+
@options[:store] ||= []
|
1407
|
+
|
1408
|
+
# Store cert_pem and key_pem to options[:store] if present
|
1409
|
+
[:cert, :key].each do |v|
|
1410
|
+
opt_key = :"#{v}_pem"
|
1411
|
+
if opts[opt_key]
|
1412
|
+
index = @options[:store].length
|
1413
|
+
@options[:store] << opts[opt_key]
|
1414
|
+
opts[v] = "store:#{index}"
|
1415
|
+
end
|
1416
|
+
end
|
1417
|
+
end
|
1418
|
+
|
1419
|
+
def process_hook(options_key, key, block, meth)
|
1420
|
+
@options[options_key] ||= []
|
1421
|
+
if ON_WORKER_KEY.include? key.class
|
1422
|
+
@options[options_key] << [block, key.to_sym]
|
1423
|
+
elsif key.nil?
|
1424
|
+
@options[options_key] << block
|
1425
|
+
else
|
1426
|
+
raise "'#{meth}' key must be String or Symbol"
|
1427
|
+
end
|
1428
|
+
end
|
1429
|
+
|
1430
|
+
def warn_if_in_single_mode(hook_name)
|
1431
|
+
return if @options[:silence_fork_callback_warning]
|
1432
|
+
# user_options (CLI) have precedence over config file
|
1433
|
+
workers_val = @config.options.user_options[:workers] || @options[:workers] ||
|
1434
|
+
@config.puma_default_options[:workers] || 0
|
1435
|
+
if workers_val == 0
|
1436
|
+
log_string =
|
1437
|
+
"Warning: You specified code to run in a `#{hook_name}` block, " \
|
1438
|
+
"but Puma is not configured to run in cluster mode (worker count > 0), " \
|
1439
|
+
"so your `#{hook_name}` block will not run."
|
1440
|
+
|
1441
|
+
LogWriter.stdio.log(log_string)
|
1442
|
+
end
|
1443
|
+
end
|
505
1444
|
end
|
506
1445
|
end
|