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/LICENSE
CHANGED
@@ -1,26 +1,29 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
BSD 3-Clause License
|
2
|
+
|
3
|
+
Copyright (c) 2019, Evan Phoenix. Some code by Zed Shaw, (c) 2005.
|
3
4
|
All rights reserved.
|
4
5
|
|
5
|
-
Redistribution and use in source and binary forms, with or without
|
6
|
+
Redistribution and use in source and binary forms, with or without
|
6
7
|
modification, are permitted provided that the following conditions are met:
|
7
8
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
9
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
10
|
+
list of conditions and the following disclaimer.
|
11
|
+
|
12
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
13
|
+
this list of conditions and the following disclaimer in the documentation
|
14
|
+
and/or other materials provided with the distribution.
|
15
|
+
|
16
|
+
3. Neither the name of the copyright holder nor the names of its
|
17
|
+
contributors may be used to endorse or promote products derived from
|
18
|
+
this software without specific prior written permission.
|
16
19
|
|
17
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
18
|
-
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
19
|
-
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
20
|
-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
21
|
-
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
22
|
-
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
23
|
-
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
24
|
-
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
25
|
-
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
20
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
21
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
22
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
23
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
24
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
25
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
26
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
27
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
28
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
26
29
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
data/README.md
CHANGED
@@ -1,45 +1,58 @@
|
|
1
1
|
<p align="center">
|
2
|
-
<img src="
|
2
|
+
<img src="https://puma.io/images/logos/puma-logo-large.png">
|
3
3
|
</p>
|
4
4
|
|
5
|
-
# Puma: A Ruby Web Server Built For
|
5
|
+
# Puma: A Ruby Web Server Built For Parallelism
|
6
6
|
|
7
|
-
[](http://travis-ci.org/puma/puma)
|
9
|
-
[](https://ci.appveyor.com/project/nateberkopec/puma)
|
10
|
-
[](https://gemnasium.com/puma/puma)
|
7
|
+
[](https://github.com/puma/puma/actions?query=workflow%3ATests)
|
11
8
|
[](https://codeclimate.com/github/puma/puma)
|
9
|
+
[]( https://stackoverflow.com/questions/tagged/puma )
|
12
10
|
|
13
|
-
Puma is a **simple, fast, threaded, and highly
|
11
|
+
Puma is a **simple, fast, multi-threaded, and highly parallel HTTP 1.1 server for Ruby/Rack applications**.
|
14
12
|
|
15
|
-
## Built For Speed &
|
13
|
+
## Built For Speed & Parallelism
|
16
14
|
|
17
|
-
|
15
|
+
Puma is a server for [Rack](https://github.com/rack/rack)-powered HTTP applications written in Ruby. It is:
|
16
|
+
* **Multi-threaded**. Each request is served in a separate thread. This helps you serve more requests per second with less memory use.
|
17
|
+
* **Multi-process**. "Pre-forks" in cluster mode, using less memory per-process thanks to copy-on-write memory.
|
18
|
+
* **Standalone**. With SSL support, zero-downtime rolling restarts and a built-in request bufferer, you can deploy Puma without any reverse proxy.
|
19
|
+
* **Battle-tested**. Our HTTP parser is inherited from Mongrel and has over 15 years of production use. Puma is currently the most popular Ruby webserver, and is the default server for Ruby on Rails.
|
18
20
|
|
19
|
-
|
21
|
+
Originally designed as a server for [Rubinius](https://github.com/rubinius/rubinius), Puma also works well with Ruby (MRI) and JRuby.
|
20
22
|
|
21
|
-
On MRI, there is a Global VM Lock (GVL) that ensures only one thread can run Ruby code at a time. But if you're doing a lot of blocking IO (such as HTTP calls to external APIs like Twitter), Puma still improves MRI's throughput by allowing
|
23
|
+
On MRI, there is a Global VM Lock (GVL) that ensures only one thread can run Ruby code at a time. But if you're doing a lot of blocking IO (such as HTTP calls to external APIs like Twitter), Puma still improves MRI's throughput by allowing IO waiting to be done in parallel. Truly parallel Ruby implementations (TruffleRuby, JRuby) don't have this limitation.
|
22
24
|
|
23
25
|
## Quick Start
|
24
26
|
|
25
27
|
```
|
26
28
|
$ gem install puma
|
27
|
-
$ puma
|
28
|
-
```
|
29
|
+
$ puma
|
30
|
+
```
|
31
|
+
|
32
|
+
Without arguments, puma will look for a rackup (.ru) file in
|
33
|
+
working directory called `config.ru`.
|
34
|
+
|
35
|
+
## SSL Connection Support
|
36
|
+
|
37
|
+
Puma will install/compile with support for ssl sockets, assuming OpenSSL
|
38
|
+
development files are installed on the system.
|
39
|
+
|
40
|
+
If the system does not have OpenSSL development files installed, Puma will
|
41
|
+
install/compile, but it will not allow ssl connections.
|
29
42
|
|
30
43
|
## Frameworks
|
31
44
|
|
32
45
|
### Rails
|
33
46
|
|
34
|
-
Puma is the default server for Rails,
|
47
|
+
Puma is the default server for Rails, included in the generated Gemfile.
|
35
48
|
|
36
|
-
|
49
|
+
Start your server with the `rails` command:
|
37
50
|
|
38
51
|
```
|
39
|
-
$ rails
|
52
|
+
$ rails server
|
40
53
|
```
|
41
54
|
|
42
|
-
Many configuration options are not available when using `rails
|
55
|
+
Many configuration options and Puma features are not available when using `rails server`. It is recommended that you use Puma's executable instead:
|
43
56
|
|
44
57
|
```
|
45
58
|
$ bundle exec puma
|
@@ -53,16 +66,29 @@ You can run your Sinatra application with Puma from the command line like this:
|
|
53
66
|
$ ruby app.rb -s Puma
|
54
67
|
```
|
55
68
|
|
56
|
-
|
69
|
+
In order to actually configure Puma using a config file, like `puma.rb`, however, you need to use the `puma` executable. To do this, you must add a rackup file to your Sinatra app:
|
57
70
|
|
58
71
|
```ruby
|
59
|
-
|
60
|
-
|
72
|
+
# config.ru
|
73
|
+
require './app'
|
74
|
+
run Sinatra::Application
|
75
|
+
```
|
76
|
+
|
77
|
+
You can then start your application using:
|
78
|
+
|
79
|
+
```
|
80
|
+
$ bundle exec puma
|
61
81
|
```
|
62
82
|
|
63
83
|
## Configuration
|
64
84
|
|
65
|
-
Puma provides numerous options. Consult `puma -h` (or `puma --help`) for a full list of CLI options, or see [dsl.rb](https://github.com/puma/puma/blob/master/lib/puma/dsl.rb).
|
85
|
+
Puma provides numerous options. Consult `puma -h` (or `puma --help`) for a full list of CLI options, or see `Puma::DSL` or [dsl.rb](https://github.com/puma/puma/blob/master/lib/puma/dsl.rb).
|
86
|
+
|
87
|
+
You can also find several configuration examples as part of the
|
88
|
+
[test](https://github.com/puma/puma/tree/master/test/config) suite.
|
89
|
+
|
90
|
+
For debugging purposes, you can set the environment variable `PUMA_LOG_CONFIG` with a value
|
91
|
+
and the loaded configuration will be printed as part of the boot process.
|
66
92
|
|
67
93
|
### Thread Pool
|
68
94
|
|
@@ -72,9 +98,9 @@ Puma uses a thread pool. You can set the minimum and maximum number of threads t
|
|
72
98
|
$ puma -t 8:32
|
73
99
|
```
|
74
100
|
|
75
|
-
Puma will automatically scale the number of threads, from the minimum until it caps out at the maximum, based on how much traffic is present. The current default is `0:16`. Feel free to experiment, but be careful not to set the number of maximum threads to a large number, as you may exhaust resources on the system (or
|
101
|
+
Puma will automatically scale the number of threads, from the minimum until it caps out at the maximum, based on how much traffic is present. The current default is `0:16` and on MRI is `0:5`. Feel free to experiment, but be careful not to set the number of maximum threads to a large number, as you may exhaust resources on the system (or cause contention for the Global VM Lock, when using MRI).
|
76
102
|
|
77
|
-
Be aware that additionally Puma creates threads on its own for internal purposes (e.g. handling slow clients). So even if you specify -t 1:1, expect around 7 threads created in your application.
|
103
|
+
Be aware that additionally Puma creates threads on its own for internal purposes (e.g. handling slow clients). So, even if you specify -t 1:1, expect around 7 threads created in your application.
|
78
104
|
|
79
105
|
### Clustered mode
|
80
106
|
|
@@ -84,15 +110,27 @@ Puma also offers "clustered mode". Clustered mode `fork`s workers from a master
|
|
84
110
|
$ puma -t 8:32 -w 3
|
85
111
|
```
|
86
112
|
|
87
|
-
|
113
|
+
Or with the `WEB_CONCURRENCY` environment variable:
|
114
|
+
|
115
|
+
```
|
116
|
+
$ WEB_CONCURRENCY=3 puma -t 8:32
|
117
|
+
```
|
118
|
+
|
119
|
+
Note that threads are still used in clustered mode, and the `-t` thread flag setting is per worker, so `-w 2 -t 16:16` will spawn 32 threads in total, with 16 in each worker process.
|
88
120
|
|
89
|
-
|
121
|
+
If the `WEB_CONCURRENCY` environment variable is set to `"auto"` and the `concurrent-ruby` gem is available in your application, Puma will set the worker process count to the result of [available processors](https://ruby-concurrency.github.io/concurrent-ruby/master/Concurrent.html#available_processor_count-class_method).
|
122
|
+
|
123
|
+
For an in-depth discussion of the tradeoffs of thread and process count settings, [see our docs](https://github.com/puma/puma/blob/9282a8efa5a0c48e39c60d22ca70051a25df9f55/docs/kubernetes.md#workers-per-pod-and-other-config-issues).
|
124
|
+
|
125
|
+
In clustered mode, Puma can "preload" your application. This loads all the application code *prior* to forking. Preloading reduces total memory usage of your application via an operating system feature called [copy-on-write](https://en.wikipedia.org/wiki/Copy-on-write).
|
126
|
+
|
127
|
+
If the `WEB_CONCURRENCY` environment variable is set to a value > 1 (and `--prune-bundler` has not been specified), preloading will be enabled by default. Otherwise, you can use the `--preload` flag from the command line:
|
90
128
|
|
91
129
|
```
|
92
130
|
$ puma -w 3 --preload
|
93
131
|
```
|
94
132
|
|
95
|
-
|
133
|
+
Or, if you're using a configuration file, you can use the `preload_app!` method:
|
96
134
|
|
97
135
|
```ruby
|
98
136
|
# config/puma.rb
|
@@ -100,51 +138,115 @@ workers 3
|
|
100
138
|
preload_app!
|
101
139
|
```
|
102
140
|
|
103
|
-
|
141
|
+
Preloading can’t be used with phased restart, since phased restart kills and restarts workers one-by-one, and preloading copies the code of master into the workers.
|
142
|
+
|
143
|
+
#### Clustered mode hooks
|
144
|
+
|
145
|
+
When using clustered mode, Puma's configuration DSL provides `before_fork` and `on_worker_boot`
|
146
|
+
hooks to run code when the master process forks and child workers are booted respectively.
|
147
|
+
|
148
|
+
It is recommended to use these hooks with `preload_app!`, otherwise constants loaded by your
|
149
|
+
application (such as `Rails`) will not be available inside the hooks.
|
104
150
|
|
105
151
|
```ruby
|
106
152
|
# config/puma.rb
|
153
|
+
before_fork do
|
154
|
+
# Add code to run inside the Puma master process before it forks a worker child.
|
155
|
+
end
|
156
|
+
|
107
157
|
on_worker_boot do
|
108
|
-
#
|
158
|
+
# Add code to run inside the Puma worker process after forking.
|
109
159
|
end
|
110
160
|
```
|
111
161
|
|
112
|
-
|
113
|
-
|
114
|
-
For instance, you could fire a log notification that a worker booted or send something to statsd.
|
115
|
-
This can be called multiple times.
|
162
|
+
In addition, there is an `on_refork` and `after_refork` hooks which are used only in [`fork_worker` mode](docs/fork_worker.md),
|
163
|
+
when the worker 0 child process forks a grandchild worker:
|
116
164
|
|
117
|
-
|
165
|
+
```ruby
|
166
|
+
on_refork do
|
167
|
+
# Used only when fork_worker mode is enabled. Add code to run inside the Puma worker 0
|
168
|
+
# child process before it forks a grandchild worker.
|
169
|
+
end
|
170
|
+
```
|
118
171
|
|
119
172
|
```ruby
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
ActiveRecord::Base.establish_connection
|
124
|
-
end
|
173
|
+
after_refork do
|
174
|
+
# Used only when fork_worker mode is enabled. Add code to run inside the Puma worker 0
|
175
|
+
# child process after it forks a grandchild worker.
|
125
176
|
end
|
126
177
|
```
|
127
178
|
|
128
|
-
|
179
|
+
Importantly, note the following considerations when Ruby forks a child process:
|
180
|
+
|
181
|
+
1. File descriptors such as network sockets **are** copied from the parent to the forked
|
182
|
+
child process. Dual-use of the same sockets by parent and child will result in I/O conflicts
|
183
|
+
such as `SocketError`, `Errno::EPIPE`, and `EOFError`.
|
184
|
+
2. Background Ruby threads, including threads used by various third-party gems for connection
|
185
|
+
monitoring, etc., are **not** copied to the child process. Often this does not cause
|
186
|
+
immediate problems until a third-party connection goes down, at which point there will
|
187
|
+
be no supervisor to reconnect it.
|
188
|
+
|
189
|
+
Therefore, we recommend the following:
|
190
|
+
|
191
|
+
1. If possible, do not establish any socket connections (HTTP, database connections, etc.)
|
192
|
+
inside Puma's master process when booting.
|
193
|
+
2. If (1) is not possible, use `before_fork` and `on_refork` to disconnect the parent's socket
|
194
|
+
connections when forking, so that they are not accidentally copied to the child process.
|
195
|
+
3. Use `on_worker_boot` to restart any background threads on the forked child.
|
196
|
+
4. Use `after_refork` to restart any background threads on the parent.
|
197
|
+
|
198
|
+
#### Master process lifecycle hooks
|
199
|
+
|
200
|
+
Puma's configuration DSL provides master process lifecycle hooks `on_booted`, `on_restart`, and `on_stopped`
|
201
|
+
which may be used to specify code blocks to run on each event:
|
129
202
|
|
130
203
|
```ruby
|
131
204
|
# config/puma.rb
|
132
|
-
|
133
|
-
#
|
205
|
+
on_booted do
|
206
|
+
# Add code to run in the Puma master process after it boots,
|
207
|
+
# and also after a phased restart completes.
|
208
|
+
end
|
209
|
+
|
210
|
+
on_restart do
|
211
|
+
# Add code to run in the Puma master process when it receives
|
212
|
+
# a restart command but before it restarts.
|
213
|
+
end
|
214
|
+
|
215
|
+
on_stopped do
|
216
|
+
# Add code to run in the Puma master process when it receives
|
217
|
+
# a stop command but before it shuts down.
|
134
218
|
end
|
135
219
|
```
|
136
220
|
|
137
|
-
|
221
|
+
### Error handling
|
222
|
+
|
223
|
+
If Puma encounters an error outside of the context of your application, it will respond with a 400/500 and a simple
|
224
|
+
textual error message (see `Puma::Server#lowlevel_error` or [server.rb](https://github.com/puma/puma/blob/master/lib/puma/server.rb)).
|
225
|
+
You can specify custom behavior for this scenario. For example, you can report the error to your third-party
|
226
|
+
error-tracking service (in this example, [rollbar](https://rollbar.com)):
|
227
|
+
|
228
|
+
```ruby
|
229
|
+
lowlevel_error_handler do |e, env, status|
|
230
|
+
if status == 400
|
231
|
+
message = "The server could not process the request due to an error, such as an incorrectly typed URL, malformed syntax, or a URL that contains illegal characters.\n"
|
232
|
+
else
|
233
|
+
message = "An error has occurred, and engineers have been informed. Please reload the page. If you continue to have problems, contact support@example.com\n"
|
234
|
+
Rollbar.critical(e)
|
235
|
+
end
|
236
|
+
|
237
|
+
[status, {}, [message]]
|
238
|
+
end
|
239
|
+
```
|
138
240
|
|
139
241
|
### Binding TCP / Sockets
|
140
242
|
|
141
|
-
|
243
|
+
Bind Puma to a socket with the `-b` (or `--bind`) flag:
|
142
244
|
|
143
245
|
```
|
144
246
|
$ puma -b tcp://127.0.0.1:9292
|
145
247
|
```
|
146
248
|
|
147
|
-
|
249
|
+
To use a UNIX Socket instead of TCP:
|
148
250
|
|
149
251
|
```
|
150
252
|
$ puma -b unix:///var/run/puma.sock
|
@@ -161,66 +263,181 @@ Need a bit of security? Use SSL sockets:
|
|
161
263
|
```
|
162
264
|
$ puma -b 'ssl://127.0.0.1:9292?key=path_to_key&cert=path_to_cert'
|
163
265
|
```
|
266
|
+
#### Self-signed SSL certificates (via the [`localhost`] gem, for development use):
|
267
|
+
|
268
|
+
Puma supports the [`localhost`] gem for self-signed certificates. This is particularly useful if you want to use Puma with SSL locally, and self-signed certificates will work for your use-case. Currently, the integration can only be used in MRI.
|
269
|
+
|
270
|
+
Puma automatically configures SSL when the [`localhost`] gem is loaded in a `development` environment:
|
271
|
+
|
272
|
+
Add the gem to your Gemfile:
|
273
|
+
```ruby
|
274
|
+
group(:development) do
|
275
|
+
gem 'localhost'
|
276
|
+
end
|
277
|
+
```
|
278
|
+
|
279
|
+
And require it implicitly using bundler:
|
280
|
+
```ruby
|
281
|
+
require "bundler"
|
282
|
+
Bundler.require(:default, ENV["RACK_ENV"].to_sym)
|
283
|
+
```
|
284
|
+
|
285
|
+
Alternatively, you can require the gem in your configuration file, either `config/puma/development.rb`, `config/puma.rb`, or set via the `-C` cli option:
|
286
|
+
```ruby
|
287
|
+
require 'localhost'
|
288
|
+
# configuration methods (from Puma::DSL) as needed
|
289
|
+
```
|
290
|
+
|
291
|
+
Additionally, Puma must be listening to an SSL socket:
|
292
|
+
|
293
|
+
```shell
|
294
|
+
$ puma -b 'ssl://localhost:9292' -C config/use_local_host.rb
|
295
|
+
|
296
|
+
# The following options allow you to reach Puma over HTTP as well:
|
297
|
+
$ puma -b ssl://localhost:9292 -b tcp://localhost:9393 -C config/use_local_host.rb
|
298
|
+
```
|
299
|
+
|
300
|
+
[`localhost`]: https://github.com/socketry/localhost
|
301
|
+
|
302
|
+
#### Controlling SSL Cipher Suites
|
303
|
+
|
304
|
+
To use or avoid specific SSL ciphers for TLSv1.2 and below, use `ssl_cipher_filter` or `ssl_cipher_list` options.
|
305
|
+
|
306
|
+
##### Ruby:
|
307
|
+
|
308
|
+
```
|
309
|
+
$ puma -b 'ssl://127.0.0.1:9292?key=path_to_key&cert=path_to_cert&ssl_cipher_filter=!aNULL:AES+SHA'
|
310
|
+
```
|
311
|
+
|
312
|
+
##### JRuby:
|
313
|
+
|
314
|
+
```
|
315
|
+
$ puma -b 'ssl://127.0.0.1:9292?keystore=path_to_keystore&keystore-pass=keystore_password&ssl_cipher_list=TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_256_CBC_SHA'
|
316
|
+
```
|
317
|
+
|
318
|
+
To configure the available TLSv1.3 ciphersuites, use `ssl_ciphersuites` option (not available for JRuby).
|
319
|
+
|
320
|
+
##### Ruby:
|
321
|
+
|
322
|
+
```
|
323
|
+
$ puma -b 'ssl://127.0.0.1:9292?key=path_to_key&cert=path_to_cert&ssl_ciphersuites=TLS_AES_256_GCM_SHA384:TLS_AES_128_GCM_SHA256'
|
324
|
+
```
|
325
|
+
|
326
|
+
See https://www.openssl.org/docs/man1.1.1/man1/ciphers.html for cipher filter format and full list of cipher suites.
|
327
|
+
|
328
|
+
Disable TLS v1 with the `no_tlsv1` option:
|
329
|
+
|
330
|
+
```
|
331
|
+
$ puma -b 'ssl://127.0.0.1:9292?key=path_to_key&cert=path_to_cert&no_tlsv1=true'
|
332
|
+
```
|
333
|
+
|
334
|
+
#### Controlling OpenSSL Verification Flags
|
335
|
+
|
336
|
+
To enable verification flags offered by OpenSSL, use `verification_flags` (not available for JRuby):
|
337
|
+
|
338
|
+
```
|
339
|
+
$ puma -b 'ssl://127.0.0.1:9292?key=path_to_key&cert=path_to_cert&verification_flags=PARTIAL_CHAIN'
|
340
|
+
```
|
341
|
+
|
342
|
+
You can also set multiple verification flags (by separating them with a comma):
|
343
|
+
|
344
|
+
```
|
345
|
+
$ puma -b 'ssl://127.0.0.1:9292?key=path_to_key&cert=path_to_cert&verification_flags=PARTIAL_CHAIN,CRL_CHECK'
|
346
|
+
```
|
347
|
+
|
348
|
+
List of available flags: `USE_CHECK_TIME`, `CRL_CHECK`, `CRL_CHECK_ALL`, `IGNORE_CRITICAL`, `X509_STRICT`, `ALLOW_PROXY_CERTS`, `POLICY_CHECK`, `EXPLICIT_POLICY`, `INHIBIT_ANY`, `INHIBIT_MAP`, `NOTIFY_POLICY`, `EXTENDED_CRL_SUPPORT`, `USE_DELTAS`, `CHECK_SS_SIGNATURE`, `TRUSTED_FIRST`, `SUITEB_128_LOS_ONLY`, `SUITEB_192_LOS`, `SUITEB_128_LOS`, `PARTIAL_CHAIN`, `NO_ALT_CHAINS`, `NO_CHECK_TIME`
|
349
|
+
(see https://www.openssl.org/docs/manmaster/man3/X509_VERIFY_PARAM_set_hostflags.html#VERIFICATION-FLAGS).
|
350
|
+
|
351
|
+
#### Controlling OpenSSL Password Decryption
|
352
|
+
|
353
|
+
To enable runtime decryption of an encrypted SSL key (not available for JRuby), use `key_password_command`:
|
354
|
+
|
355
|
+
```
|
356
|
+
$ puma -b 'ssl://127.0.0.1:9292?key=path_to_key&cert=path_to_cert&key_password_command=/path/to/command.sh'
|
357
|
+
```
|
358
|
+
|
359
|
+
`key_password_command` must:
|
360
|
+
|
361
|
+
1. Be executable by Puma.
|
362
|
+
2. Print the decryption password to stdout.
|
363
|
+
|
364
|
+
For example:
|
365
|
+
|
366
|
+
```shell
|
367
|
+
#!/bin/sh
|
368
|
+
|
369
|
+
echo "this is my password"
|
370
|
+
```
|
371
|
+
|
372
|
+
`key_password_command` can be used with `key` or `key_pem`. If the key
|
373
|
+
is not encrypted, the executable will not be called.
|
164
374
|
|
165
375
|
### Control/Status Server
|
166
376
|
|
167
|
-
Puma has a built-in status
|
377
|
+
Puma has a built-in status and control app that can be used to query and control Puma.
|
168
378
|
|
169
379
|
```
|
170
|
-
$ puma --control tcp://127.0.0.1:9293 --control-token foo
|
380
|
+
$ puma --control-url tcp://127.0.0.1:9293 --control-token foo
|
171
381
|
```
|
172
382
|
|
173
|
-
Puma will start the control server on localhost port 9293. All requests to the control server will need to include `token=foo` as a query parameter. This allows for simple authentication. Check out [status.rb](https://github.com/puma/puma/blob/master/lib/puma/app/status.rb) to see what the app has available.
|
383
|
+
Puma will start the control server on localhost port 9293. All requests to the control server will need to include control token (in this case, `token=foo`) as a query parameter. This allows for simple authentication. Check out `Puma::App::Status` or [status.rb](https://github.com/puma/puma/blob/master/lib/puma/app/status.rb) to see what the status app has available.
|
174
384
|
|
175
385
|
You can also interact with the control server via `pumactl`. This command will restart Puma:
|
176
386
|
|
177
387
|
```
|
178
|
-
$ pumactl -
|
388
|
+
$ pumactl --control-url 'tcp://127.0.0.1:9293' --control-token foo restart
|
179
389
|
```
|
180
390
|
|
181
391
|
To see a list of `pumactl` options, use `pumactl --help`.
|
182
392
|
|
183
393
|
### Configuration File
|
184
394
|
|
185
|
-
You can also provide a configuration file
|
395
|
+
You can also provide a configuration file with the `-C` (or `--config`) flag:
|
186
396
|
|
187
397
|
```
|
188
398
|
$ puma -C /path/to/config
|
189
399
|
```
|
190
400
|
|
191
|
-
If no configuration file is specified, Puma will look for a configuration file at `config/puma.rb`. If an environment is specified
|
401
|
+
If no configuration file is specified, Puma will look for a configuration file at `config/puma.rb`. If an environment is specified (via the `--environment` flag or through the `APP_ENV`, `RACK_ENV`, or `RAILS_ENV` environment variables) Puma looks for a configuration file at `config/puma/<environment_name>.rb` and then falls back to `config/puma.rb`.
|
192
402
|
|
193
|
-
If you want to prevent Puma from looking for a configuration file in those locations,
|
403
|
+
If you want to prevent Puma from looking for a configuration file in those locations, include the `--no-config` flag:
|
194
404
|
|
195
405
|
```
|
406
|
+
$ puma --no-config
|
407
|
+
|
408
|
+
# or
|
409
|
+
|
196
410
|
$ puma -C "-"
|
197
411
|
```
|
198
412
|
|
199
|
-
|
413
|
+
The other side-effects of setting the environment are whether to show stack traces (in `development` or `test`), and setting RACK_ENV may potentially affect middleware looking for this value to change their behavior. The default puma RACK_ENV value is `development`. You can see all config default values in `Puma::Configuration#puma_default_options` or [configuration.rb](https://github.com/puma/puma/blob/61c6213fbab/lib/puma/configuration.rb#L182-L204).
|
414
|
+
|
415
|
+
Check out `Puma::DSL` or [dsl.rb](https://github.com/puma/puma/blob/master/lib/puma/dsl.rb) to see all available options.
|
200
416
|
|
201
417
|
## Restart
|
202
418
|
|
203
419
|
Puma includes the ability to restart itself. When available (MRI, Rubinius, JRuby), Puma performs a "hot restart". This is the same functionality available in *Unicorn* and *NGINX* which keep the server sockets open between restarts. This makes sure that no pending requests are dropped while the restart is taking place.
|
204
420
|
|
205
|
-
For more, see the [
|
421
|
+
For more, see the [Restart documentation](docs/restart.md).
|
206
422
|
|
207
423
|
## Signals
|
208
424
|
|
209
|
-
Puma responds to several signals. A detailed guide to using UNIX signals with Puma can be found in the [
|
425
|
+
Puma responds to several signals. A detailed guide to using UNIX signals with Puma can be found in the [Signals documentation](docs/signals.md).
|
210
426
|
|
211
427
|
## Platform Constraints
|
212
428
|
|
213
429
|
Some platforms do not support all Puma features.
|
214
430
|
|
215
431
|
* **JRuby**, **Windows**: server sockets are not seamless on restart, they must be closed and reopened. These platforms have no way to pass descriptors into a new process that is exposed to Ruby. Also, cluster mode is not supported due to a lack of fork(2).
|
216
|
-
* **Windows**:
|
432
|
+
* **Windows**: Cluster mode is not supported due to a lack of fork(2).
|
433
|
+
* **Kubernetes**: The way Kubernetes handles pod shutdowns interacts poorly with server processes implementing graceful shutdown, like Puma. See the [kubernetes section of the documentation](docs/kubernetes.md) for more details.
|
217
434
|
|
218
435
|
## Known Bugs
|
219
436
|
|
220
|
-
For MRI versions 2.2.7, 2.2.8, 2.3.4 and 2.4.1, you may see ```stream closed in another thread (IOError)```. It may be caused by a [Ruby bug](https://bugs.ruby-lang.org/issues/13632). It can be fixed with the gem https://rubygems.org/gems/stopgap_13632:
|
437
|
+
For MRI versions 2.2.7, 2.2.8, 2.2.9, 2.2.10, 2.3.4 and 2.4.1, you may see ```stream closed in another thread (IOError)```. It may be caused by a [Ruby bug](https://bugs.ruby-lang.org/issues/13632). It can be fixed with the gem https://rubygems.org/gems/stopgap_13632:
|
221
438
|
|
222
439
|
```ruby
|
223
|
-
if %w(2.2.7 2.2.8 2.3.4 2.4.1).include? RUBY_VERSION
|
440
|
+
if %w(2.2.7 2.2.8 2.2.9 2.2.10 2.3.4 2.4.1).include? RUBY_VERSION
|
224
441
|
begin
|
225
442
|
require 'stopgap_13632'
|
226
443
|
rescue LoadError
|
@@ -230,23 +447,38 @@ end
|
|
230
447
|
|
231
448
|
## Deployment
|
232
449
|
|
233
|
-
Puma has support for Capistrano with an [external gem](https://github.com/seuros/capistrano-puma).
|
450
|
+
* Puma has support for Capistrano with an [external gem](https://github.com/seuros/capistrano-puma).
|
234
451
|
|
235
|
-
|
236
|
-
provide continuous monitoring and restarts for increased
|
237
|
-
reliability in production environments:
|
452
|
+
* Additionally, Puma has support for built-in daemonization via the [puma-daemon](https://github.com/kigster/puma-daemon) ruby gem. The gem restores the `daemonize` option that was removed from Puma starting version 5, but only for MRI Ruby.
|
238
453
|
|
239
|
-
* [tools/jungle](https://github.com/puma/puma/tree/master/tools/jungle) for sysvinit (init.d) and upstart
|
240
|
-
* [docs/systemd](https://github.com/puma/puma/blob/master/docs/systemd.md)
|
241
454
|
|
242
|
-
|
455
|
+
It is common to use process monitors with Puma. Modern process monitors like systemd or rc.d
|
456
|
+
provide continuous monitoring and restarts for increased reliability in production environments:
|
243
457
|
|
244
|
-
|
458
|
+
* [rc.d](docs/jungle/rc.d/README.md)
|
459
|
+
* [systemd](docs/systemd.md)
|
245
460
|
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
461
|
+
Community guides:
|
462
|
+
|
463
|
+
* [Deploying Puma on OpenBSD using relayd and httpd](https://gist.github.com/anon987654321/4532cf8d6c59c1f43ec8973faa031103)
|
464
|
+
|
465
|
+
## Community Extensions
|
466
|
+
|
467
|
+
### Plugins
|
468
|
+
|
469
|
+
* [puma-metrics](https://github.com/harmjanblok/puma-metrics) — export Puma metrics to Prometheus
|
470
|
+
* [puma-plugin-statsd](https://github.com/yob/puma-plugin-statsd) — send Puma metrics to statsd
|
471
|
+
* [puma-plugin-systemd](https://github.com/sj26/puma-plugin-systemd) — deeper integration with systemd for notify, status and watchdog. Puma 5.1.0 integrated notify and watchdog, which probably conflicts with this plugin. Puma 6.1.0 added status support which obsoletes the plugin entirely.
|
472
|
+
* [puma-plugin-telemetry](https://github.com/babbel/puma-plugin-telemetry) - telemetry plugin for Puma offering various targets to publish
|
473
|
+
* [puma-acme](https://github.com/anchordotdev/puma-acme) - automatic SSL/HTTPS certificate provisioning and setup
|
474
|
+
|
475
|
+
### Monitoring
|
476
|
+
|
477
|
+
* [puma-status](https://github.com/ylecuyer/puma-status) — Monitor CPU/Mem/Load of running puma instances from the CLI
|
478
|
+
|
479
|
+
## Contributing
|
480
|
+
|
481
|
+
Find details for contributing in the [contribution guide](CONTRIBUTING.md).
|
250
482
|
|
251
483
|
## License
|
252
484
|
|
data/bin/puma-wild
CHANGED
@@ -5,24 +5,18 @@
|
|
5
5
|
|
6
6
|
require 'rubygems'
|
7
7
|
|
8
|
-
|
8
|
+
cli_arg = ARGV.shift
|
9
9
|
|
10
10
|
inc = ""
|
11
11
|
|
12
|
-
if
|
12
|
+
if cli_arg == "-I"
|
13
13
|
inc = ARGV.shift
|
14
14
|
$LOAD_PATH.concat inc.split(":")
|
15
|
-
gems = ARGV.shift
|
16
|
-
end
|
17
|
-
|
18
|
-
gems.split(",").each do |s|
|
19
|
-
name, ver = s.split(":",2)
|
20
|
-
gem name, ver
|
21
15
|
end
|
22
16
|
|
23
17
|
module Puma; end
|
24
18
|
|
25
|
-
Puma.const_set(
|
19
|
+
Puma.const_set(:WILD_ARGS, ["-I", inc])
|
26
20
|
|
27
21
|
require 'puma/cli'
|
28
22
|
|