puma 3.9.0 → 3.12.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puma might be problematic. Click here for more details.
- checksums.yaml +5 -5
- data/History.md +98 -0
- data/README.md +140 -230
- data/docs/architecture.md +36 -0
- data/{DEPLOYMENT.md → docs/deployment.md} +0 -0
- data/docs/images/puma-connection-flow-no-reactor.png +0 -0
- data/docs/images/puma-connection-flow.png +0 -0
- data/docs/images/puma-general-arch.png +0 -0
- data/docs/plugins.md +28 -0
- data/docs/restart.md +39 -0
- data/docs/signals.md +56 -3
- data/docs/systemd.md +112 -37
- data/ext/puma_http11/http11_parser.c +84 -84
- data/ext/puma_http11/http11_parser.rl +9 -9
- data/ext/puma_http11/mini_ssl.c +18 -4
- data/ext/puma_http11/org/jruby/puma/Http11Parser.java +13 -16
- data/ext/puma_http11/org/jruby/puma/MiniSSL.java +6 -0
- data/lib/puma.rb +8 -0
- data/lib/puma/app/status.rb +8 -0
- data/lib/puma/binder.rb +12 -8
- data/lib/puma/cli.rb +20 -7
- data/lib/puma/client.rb +28 -0
- data/lib/puma/cluster.rb +26 -7
- data/lib/puma/configuration.rb +19 -14
- data/lib/puma/const.rb +7 -2
- data/lib/puma/control_cli.rb +5 -5
- data/lib/puma/dsl.rb +34 -7
- data/lib/puma/jruby_restart.rb +0 -1
- data/lib/puma/launcher.rb +36 -19
- data/lib/puma/minissl.rb +49 -27
- data/lib/puma/plugin/tmp_restart.rb +0 -1
- data/lib/puma/reactor.rb +135 -0
- data/lib/puma/runner.rb +12 -1
- data/lib/puma/server.rb +84 -25
- data/lib/puma/single.rb +12 -3
- data/lib/puma/thread_pool.rb +47 -8
- data/lib/rack/handler/puma.rb +4 -1
- data/tools/jungle/README.md +12 -2
- data/tools/jungle/init.d/README.md +2 -0
- data/tools/jungle/init.d/puma +2 -2
- data/tools/jungle/init.d/run-puma +1 -1
- data/tools/jungle/rc.d/README.md +74 -0
- data/tools/jungle/rc.d/puma +61 -0
- data/tools/jungle/rc.d/puma.conf +10 -0
- data/tools/trickletest.rb +1 -1
- metadata +21 -94
- data/.github/issue_template.md +0 -20
- data/Gemfile +0 -12
- data/Manifest.txt +0 -78
- data/Rakefile +0 -158
- data/Release.md +0 -9
- data/gemfiles/2.1-Gemfile +0 -12
- data/puma.gemspec +0 -52
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: bff4687b24c136075e00b45d5314fd6326b6240733fff22c706096d10d8ec965
|
4
|
+
data.tar.gz: db2020f983ba02f7403e50f9f9391bd2f20e811fa42121147d4cbaf619e1d8d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d6d7efcb9aeb437c07f49cb5a589ed016d888acab08f130bb382f2d470b301ec40ce3df90fbe4cf989bc84468633b180894c60daca377346d283210e6fedba98
|
7
|
+
data.tar.gz: 2d45380434e8d88d534a27db1a1f843d70b925a64065d55ee637153669b3c78f1539bf4c84ee166ec90636ba3ee948a97540c0bdbac5cc3d68809c86874038f8
|
data/History.md
CHANGED
@@ -1,3 +1,101 @@
|
|
1
|
+
## 3.12.0 / 2018-07-13
|
2
|
+
|
3
|
+
* 5 features:
|
4
|
+
* You can now specify which SSL ciphers the server should support, default is unchanged (#1478)
|
5
|
+
* The setting for Puma's `max_threads` is now in `Puma.stats` (#1604)
|
6
|
+
* Pool capacity is now in `Puma.stats` (#1579)
|
7
|
+
* Installs restricted to Ruby 2.2+ (#1506)
|
8
|
+
* `--control` is now deprecated in favor of `--control-url` (#1487)
|
9
|
+
|
10
|
+
* 2 bugfixes:
|
11
|
+
* Workers will no longer accept more web requests than they have capacity to process. This prevents an issue where one worker would accept lots of requests while starving other workers (#1563)
|
12
|
+
* In a test env puma now emits the stack on an exception (#1557)
|
13
|
+
|
14
|
+
## 3.11.4 / 2018-04-12
|
15
|
+
|
16
|
+
* 2 features:
|
17
|
+
* Manage puma as a service using rc.d (#1529)
|
18
|
+
* Server stats are now available from a top level method (#1532)
|
19
|
+
* 5 bugfixes:
|
20
|
+
* Fix parsing CLI options (#1482)
|
21
|
+
* Order of stderr and stdout is made before redirecting to a log file (#1511)
|
22
|
+
* Init.d fix of `ps -p` to check if pid exists (#1545)
|
23
|
+
* Early hints bugfix (#1550)
|
24
|
+
* Purge interrupt queue when closing socket fails (#1553)
|
25
|
+
|
26
|
+
## 3.11.3 / 2018-03-05
|
27
|
+
|
28
|
+
* 3 bugfixes:
|
29
|
+
* Add closed? to MiniSSL::Socket for use in reactor (#1510)
|
30
|
+
* Handle EOFError at the toplevel of the server threads (#1524) (#1507)
|
31
|
+
* Deal with zero sized bodies when using SSL (#1483)
|
32
|
+
|
33
|
+
## 3.11.2 / 2018-01-19
|
34
|
+
|
35
|
+
* 1 bugfix:
|
36
|
+
* Deal with read\_nonblock returning nil early
|
37
|
+
|
38
|
+
## 3.11.1 / 2018-01-18
|
39
|
+
|
40
|
+
* 1 bugfix:
|
41
|
+
* Handle read\_nonblock returning nil when the socket close (#1502)
|
42
|
+
|
43
|
+
## 3.11.0 / 2017-11-20
|
44
|
+
|
45
|
+
* 2 features:
|
46
|
+
* HTTP 103 Early Hints (#1403)
|
47
|
+
* 421/451 status codes now have correct status messages attached (#1435)
|
48
|
+
|
49
|
+
* 9 bugfixes:
|
50
|
+
* Environment config files (/config/puma/<ENV>.rb) load correctly (#1340)
|
51
|
+
* Specify windows dependencies correctly (#1434, #1436)
|
52
|
+
* puma/events required in test helper (#1418)
|
53
|
+
* Correct control CLI's option help text (#1416)
|
54
|
+
* Remove a warning for unused variable in mini_ssl (#1409)
|
55
|
+
* Correct pumactl docs argument ordering (#1427)
|
56
|
+
* Fix an uninitialized variable warning in server.rb (#1430)
|
57
|
+
* Fix docs typo/error in Launcher init (#1429)
|
58
|
+
* Deal with leading spaces in RUBYOPT (#1455)
|
59
|
+
|
60
|
+
* 2 other:
|
61
|
+
* Add docs about internals (#1425, #1452)
|
62
|
+
* Tons of test fixes from @MSP-Greg (#1439, #1442, #1464)
|
63
|
+
|
64
|
+
## 3.10.0 / 2017-08-17
|
65
|
+
|
66
|
+
* 3 features:
|
67
|
+
* The status server has a new /gc and /gc-status command. (#1384)
|
68
|
+
* The persistent and first data timeouts are now configurable (#1111)
|
69
|
+
* Implemented RFC 2324 (#1392)
|
70
|
+
|
71
|
+
* 12 bugfixes:
|
72
|
+
* Not really a Puma bug, but @NickolasVashchenko created a gem to workaround a Ruby bug that some users of Puma may be experiencing. See README for more. (#1347)
|
73
|
+
* Fix hangups with SSL and persistent connections. (#1334)
|
74
|
+
* Fix Rails double-binding to a port (#1383)
|
75
|
+
* Fix incorrect thread names (#1368)
|
76
|
+
* Fix issues with /etc/hosts and JRuby where localhost addresses were not correct. (#1318)
|
77
|
+
* Fix compatibility with RUBYOPT="--enable-frozen-string-literal" (#1376)
|
78
|
+
* Fixed some compiler warnings (#1388)
|
79
|
+
* We actually run the integration tests in CI now (#1390)
|
80
|
+
* No longer shipping unnecessary directories in the gemfile (#1391)
|
81
|
+
* If RUBYOPT is nil, we no longer blow up on restart. (#1385)
|
82
|
+
* Correct response to SIGINT (#1377)
|
83
|
+
* Proper exit code returned when we receive a TERM signal (#1337)
|
84
|
+
|
85
|
+
* 3 refactors:
|
86
|
+
* Various test improvements from @grosser
|
87
|
+
* Rubocop (#1325)
|
88
|
+
* Hoe has been removed (#1395)
|
89
|
+
|
90
|
+
* 1 known issue:
|
91
|
+
* Socket activation doesn't work in JRuby. Their fault, not ours. (#1367)
|
92
|
+
|
93
|
+
## 3.9.1 / 2017-06-03
|
94
|
+
|
95
|
+
* 2 bugfixes:
|
96
|
+
* Fixed compatibility with older Bundler versions (#1314)
|
97
|
+
* Some internal test/development cleanup (#1311, #1313)
|
98
|
+
|
1
99
|
## 3.9.0 / 2017-06-01
|
2
100
|
|
3
101
|
* 2 features:
|
data/README.md
CHANGED
@@ -1,344 +1,254 @@
|
|
1
|
+
<p align="center">
|
2
|
+
<img src="http://puma.io/images/logos/puma-logo-large.png">
|
3
|
+
</p>
|
4
|
+
|
1
5
|
# Puma: A Ruby Web Server Built For Concurrency
|
2
6
|
|
3
7
|
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/puma/puma?utm\_source=badge&utm\_medium=badge&utm\_campaign=pr-badge)
|
4
8
|
[![Build Status](https://secure.travis-ci.org/puma/puma.svg)](http://travis-ci.org/puma/puma)
|
9
|
+
[![AppVeyor](https://img.shields.io/appveyor/ci/nateberkopec/puma.svg)](https://ci.appveyor.com/project/nateberkopec/puma)
|
5
10
|
[![Dependency Status](https://gemnasium.com/puma/puma.svg)](https://gemnasium.com/puma/puma)
|
6
11
|
[![Code Climate](https://codeclimate.com/github/puma/puma.svg)](https://codeclimate.com/github/puma/puma)
|
7
12
|
|
8
|
-
|
9
|
-
|
10
|
-
Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications. Puma is intended for use in both development and production environments. In order to get the best throughput, it is highly recommended that you use a Ruby implementation with real threads like Rubinius or JRuby.
|
13
|
+
Puma is a **simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications** in development and production.
|
11
14
|
|
12
15
|
## Built For Speed & Concurrency
|
13
16
|
|
14
|
-
Puma
|
17
|
+
Under the hood, Puma processes requests using a C-optimized Ragel extension (inherited from Mongrel) that provides fast, accurate HTTP 1.1 protocol parsing in a portable way. Puma then serves the request in a thread from an internal thread pool. Since each request is served in a separate thread, truly concurrent Ruby implementations (JRuby, Rubinius) will use all available CPU cores.
|
15
18
|
|
16
|
-
|
19
|
+
Puma was designed to be the go-to server for [Rubinius](http://rubini.us), but also works well with JRuby and MRI.
|
17
20
|
|
18
|
-
|
19
|
-
|
20
|
-
On MRI, there is a Global Interpreter Lock (GIL) that ensures only one thread can be run 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 blocking IO to be run concurrently (EventMachine-based servers such as Thin turn off this ability, requiring you to use special libraries). Your mileage may vary. In order to get the best throughput, it is highly recommended that you use a Ruby implementation with real threads like [Rubinius](http://rubini.us) or [JRuby](http://jruby.org).
|
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 blocking IO to be run concurrently.
|
21
22
|
|
22
23
|
## Quick Start
|
23
24
|
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
Now you should have the `puma` command available in your PATH, so just do the following in the root folder of your Rack application:
|
29
|
-
|
30
|
-
$ puma app.ru
|
31
|
-
|
32
|
-
## Plugins
|
33
|
-
|
34
|
-
Puma 3.0 added support for plugins that can augment configuration and service operations.
|
35
|
-
|
36
|
-
2 canonical plugins to look to aid in development of further plugins:
|
37
|
-
|
38
|
-
* [tmp\_restart](https://github.com/puma/puma/blob/master/lib/puma/plugin/tmp_restart.rb): Restarts the server if the file `tmp/restart.txt` is touched
|
39
|
-
* [heroku](https://github.com/puma/puma-heroku/blob/master/lib/puma/plugin/heroku.rb): Packages up the default configuration used by puma on Heroku
|
40
|
-
|
41
|
-
Plugins are activated in a puma configuration file (such as `config/puma.rb'`) by adding `plugin "name"`, such as `plugin "heroku"`.
|
42
|
-
|
43
|
-
Plugins are activated based simply on path requirements so, activating the `heroku` plugin will simply be doing `require "puma/plugin/heroku"`. This allows gems to provide multiple plugins (as well as unrelated gems to provide puma plugins).
|
44
|
-
|
45
|
-
The `tmp_restart` plugin is bundled with puma, so it can always be used.
|
46
|
-
|
47
|
-
To use the `heroku` plugin, add `puma-heroku` to your Gemfile or install it.
|
48
|
-
|
49
|
-
### API
|
25
|
+
```
|
26
|
+
$ gem install puma
|
27
|
+
$ puma <any rackup (*.ru) file>
|
28
|
+
```
|
50
29
|
|
51
|
-
|
30
|
+
## Frameworks
|
52
31
|
|
53
|
-
|
32
|
+
### Rails
|
54
33
|
|
55
|
-
|
34
|
+
Puma is the default server for Rails, and should already be included in your Gemfile.
|
56
35
|
|
57
|
-
|
36
|
+
Then start your server with the `rails` command:
|
58
37
|
|
59
|
-
|
38
|
+
```
|
39
|
+
$ rails s
|
40
|
+
```
|
60
41
|
|
42
|
+
Many configuration options are not available when using `rails s`. It is recommended that you use Puma's executable instead:
|
61
43
|
|
62
|
-
|
44
|
+
```
|
45
|
+
$ bundle exec puma
|
46
|
+
```
|
63
47
|
|
64
48
|
### Sinatra
|
65
49
|
|
66
50
|
You can run your Sinatra application with Puma from the command line like this:
|
67
51
|
|
68
|
-
|
52
|
+
```
|
53
|
+
$ ruby app.rb -s Puma
|
54
|
+
```
|
69
55
|
|
70
56
|
Or you can configure your application to always use Puma:
|
71
57
|
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
### Rails
|
78
|
-
|
79
|
-
First, make sure Puma is in your Gemfile:
|
80
|
-
|
81
|
-
gem 'puma'
|
82
|
-
|
83
|
-
Then start your server with the `rails` command:
|
84
|
-
|
85
|
-
$ rails s Puma
|
86
|
-
|
87
|
-
### Rackup
|
88
|
-
|
89
|
-
You can pass it as an option to `rackup`:
|
90
|
-
|
91
|
-
$ rackup -s Puma
|
92
|
-
|
93
|
-
Alternatively, you can modify your `config.ru` to choose Puma by default, by adding the following as the first line:
|
94
|
-
|
95
|
-
#\ -s puma
|
58
|
+
```ruby
|
59
|
+
require 'sinatra'
|
60
|
+
configure { set :server, :puma }
|
61
|
+
```
|
96
62
|
|
97
63
|
## Configuration
|
98
64
|
|
99
|
-
Puma provides numerous options
|
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).
|
100
66
|
|
101
67
|
### Thread Pool
|
102
68
|
|
103
|
-
Puma
|
69
|
+
Puma uses a thread pool. You can set the minimum and maximum number of threads that are available in the pool with the `-t` (or `--threads`) flag:
|
70
|
+
|
71
|
+
```
|
72
|
+
$ puma -t 8:32
|
73
|
+
```
|
104
74
|
|
105
|
-
|
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 hit resource limits).
|
106
76
|
|
107
|
-
|
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.
|
108
78
|
|
109
79
|
### Clustered mode
|
110
80
|
|
111
|
-
Puma
|
81
|
+
Puma also offers "clustered mode". Clustered mode `fork`s workers from a master process. Each child process still has its own thread pool. You can tune the number of workers with the `-w` (or `--workers`) flag:
|
112
82
|
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
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 be 32 threads.
|
83
|
+
```
|
84
|
+
$ puma -t 8:32 -w 3
|
85
|
+
```
|
117
86
|
|
118
|
-
|
87
|
+
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.
|
119
88
|
|
120
|
-
|
121
|
-
$ puma -t 8:32 -w 3 --preload
|
89
|
+
In clustered mode, Puma may "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) (Ruby 2.0+ only). Use the `--preload` flag from the command line:
|
122
90
|
|
123
|
-
|
91
|
+
```
|
92
|
+
$ puma -w 3 --preload
|
93
|
+
```
|
124
94
|
|
125
|
-
|
95
|
+
If you're using a configuration file, use the `preload_app!` method:
|
126
96
|
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
97
|
+
```ruby
|
98
|
+
# config/puma.rb
|
99
|
+
workers 3
|
100
|
+
preload_app!
|
101
|
+
```
|
131
102
|
|
132
103
|
Additionally, you can specify a block in your configuration file that will be run on boot of each worker:
|
133
104
|
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
105
|
+
```ruby
|
106
|
+
# config/puma.rb
|
107
|
+
on_worker_boot do
|
108
|
+
# configuration here
|
109
|
+
end
|
110
|
+
```
|
138
111
|
|
139
112
|
This code can be used to setup the process before booting the application, allowing
|
140
113
|
you to do some Puma-specific things that you don't want to embed in your application.
|
141
114
|
For instance, you could fire a log notification that a worker booted or send something to statsd.
|
142
|
-
This can be called multiple times
|
115
|
+
This can be called multiple times.
|
143
116
|
|
144
117
|
If you're preloading your application and using ActiveRecord, it's recommended that you setup your connection pool here:
|
145
118
|
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
# config/puma.rb
|
156
|
-
before_fork do
|
157
|
-
# configuration here
|
158
|
-
end
|
159
|
-
|
160
|
-
This code can be used to clean up before forking to clients, allowing
|
161
|
-
you to do some Puma-specific things that you don't want to embed in your application.
|
162
|
-
|
163
|
-
If you're preloading your application and using ActiveRecord, it's recommended that you close any connections to the database here to prevent connection leakage:
|
164
|
-
|
165
|
-
# config/puma.rb
|
166
|
-
before_fork do
|
167
|
-
ActiveRecord::Base.connection_pool.disconnect!
|
168
|
-
end
|
169
|
-
|
170
|
-
This rule applies to any connections to external services (Redis, databases, memcache, ...) that might be started automatically by the framework.
|
171
|
-
|
172
|
-
When you use preload_app, all of your new code goes into the master process, and is then copied into the workers (meaning it’s only compatible with cluster mode). General rule is to use preload_app when your workers die often and need fast starts. If you don’t have many workers, you probably should not use preload_app.
|
173
|
-
|
174
|
-
Note that preload_app can’t be used with phased restart, since phased restart kills and restarts workers one-by-one, and preload_app is all about copying the code of master into the workers.
|
175
|
-
|
176
|
-
### Error handler for low-level errors
|
119
|
+
```ruby
|
120
|
+
# config/puma.rb
|
121
|
+
on_worker_boot do
|
122
|
+
ActiveSupport.on_load(:active_record) do
|
123
|
+
ActiveRecord::Base.establish_connection
|
124
|
+
end
|
125
|
+
end
|
126
|
+
```
|
177
127
|
|
178
|
-
|
179
|
-
textual error message (see `lowlevel_error` in [this file](https://github.com/puma/puma/blob/master/lib/puma/server.rb)).
|
180
|
-
You can specify custom behavior for this scenario. For example, you can report the error to your third-party
|
181
|
-
error-tracking service (in this example, [rollbar](http://rollbar.com)):
|
128
|
+
On top of that, you can specify a block in your configuration file that will be run before workers are forked:
|
182
129
|
|
183
130
|
```ruby
|
184
|
-
|
185
|
-
|
186
|
-
|
131
|
+
# config/puma.rb
|
132
|
+
before_fork do
|
133
|
+
# configuration here
|
187
134
|
end
|
188
135
|
```
|
189
136
|
|
137
|
+
Preloading can’t be used with phased restart, since phased restart kills and restarts workers one-by-one, and preload_app copies the code of master into the workers.
|
138
|
+
|
190
139
|
### Binding TCP / Sockets
|
191
140
|
|
192
141
|
In contrast to many other server configs which require multiple flags, Puma simply uses one URI parameter with the `-b` (or `--bind`) flag:
|
193
142
|
|
194
|
-
|
143
|
+
```
|
144
|
+
$ puma -b tcp://127.0.0.1:9292
|
145
|
+
```
|
195
146
|
|
196
|
-
Want to use UNIX Sockets instead of TCP (which can provide a 5-10% performance boost)?
|
147
|
+
Want to use UNIX Sockets instead of TCP (which can provide a 5-10% performance boost)?
|
197
148
|
|
198
|
-
|
149
|
+
```
|
150
|
+
$ puma -b unix:///var/run/puma.sock
|
151
|
+
```
|
199
152
|
|
200
153
|
If you need to change the permissions of the UNIX socket, just add a umask parameter:
|
201
154
|
|
202
|
-
|
203
|
-
|
204
|
-
|
155
|
+
```
|
156
|
+
$ puma -b 'unix:///var/run/puma.sock?umask=0111'
|
157
|
+
```
|
205
158
|
|
206
|
-
|
159
|
+
Need a bit of security? Use SSL sockets:
|
160
|
+
```
|
161
|
+
$ puma -b 'ssl://127.0.0.1:9292?key=path_to_key&cert=path_to_cert'
|
162
|
+
```
|
163
|
+
#### Controlling SSL Cipher Suites
|
164
|
+
Need to use or avoid specific SSL cipher suites? Use ssl_cipher_filter or ssl_cipher_list options.
|
165
|
+
#####Ruby:
|
166
|
+
```
|
167
|
+
$ puma -b 'ssl://127.0.0.1:9292?key=path_to_key&cert=path_to_cert&ssl_cipher_filter=!aNULL:AES+SHA'
|
168
|
+
```
|
169
|
+
#####JRuby:
|
170
|
+
```
|
171
|
+
$ 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'
|
172
|
+
```
|
173
|
+
See https://www.openssl.org/docs/man1.0.2/apps/ciphers.html for cipher filter format and full list of cipher suites.
|
207
174
|
|
208
175
|
### Control/Status Server
|
209
176
|
|
210
|
-
Puma
|
177
|
+
Puma has a built-in status/control app that can be used to query and control Puma itself.
|
211
178
|
|
212
|
-
|
179
|
+
```
|
180
|
+
$ puma --control-url tcp://127.0.0.1:9293 --control-token foo
|
181
|
+
```
|
213
182
|
|
214
|
-
|
183
|
+
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.
|
215
184
|
|
216
|
-
|
185
|
+
You can also interact with the control server via `pumactl`. This command will restart Puma:
|
217
186
|
|
218
|
-
|
187
|
+
```
|
188
|
+
$ pumactl --control-url 'tcp://127.0.0.1:9293' --control-token foo restart
|
189
|
+
```
|
219
190
|
|
220
|
-
To see a list of `pumactl` options,
|
191
|
+
To see a list of `pumactl` options, use `pumactl --help`.
|
221
192
|
|
222
|
-
### Configuration
|
193
|
+
### Configuration File
|
223
194
|
|
224
195
|
You can also provide a configuration file which Puma will use with the `-C` (or `--config`) flag:
|
225
196
|
|
226
|
-
|
197
|
+
```
|
198
|
+
$ puma -C /path/to/config
|
199
|
+
```
|
227
200
|
|
228
|
-
|
201
|
+
If no configuration file is specified, Puma will look for a configuration file at `config/puma.rb`. If an environment is specified, either via the `-e` and `--environment` flags, or through the `RACK_ENV` environment variable, the default file location will be `config/puma/environment_name.rb`.
|
229
202
|
|
230
203
|
If you want to prevent Puma from looking for a configuration file in those locations, provide a dash as the argument to the `-C` (or `--config`) flag:
|
231
204
|
|
232
|
-
|
205
|
+
```
|
206
|
+
$ puma -C "-"
|
207
|
+
```
|
233
208
|
|
234
|
-
Take the following [sample configuration](https://github.com/puma/puma/blob/master/examples/config.rb) as inspiration or check out [
|
209
|
+
Take the following [sample configuration](https://github.com/puma/puma/blob/master/examples/config.rb) as inspiration or check out [dsl.rb](https://github.com/puma/puma/blob/master/lib/puma/dsl.rb) to see all available options.
|
235
210
|
|
236
211
|
## Restart
|
237
212
|
|
238
|
-
Puma includes the ability to restart itself
|
239
|
-
|
240
|
-
To perform a restart, there are 2 builtin mechanisms:
|
241
|
-
|
242
|
-
* Send the `puma` process the `SIGUSR2` signal
|
243
|
-
* Use the status server and issue `/restart`
|
244
|
-
|
245
|
-
No code is shared between the current and restarted process, so it should be safe to issue a restart any place where you would manually stop Puma and start it again.
|
213
|
+
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.
|
246
214
|
|
247
|
-
|
215
|
+
For more, see the [restart documentation](https://github.com/puma/puma/blob/master/docs/restart.md).
|
248
216
|
|
249
|
-
|
217
|
+
## Signals
|
250
218
|
|
251
|
-
|
219
|
+
Puma responds to several signals. A detailed guide to using UNIX signals with Puma can be found in the [signals documentation](https://github.com/puma/puma/blob/master/docs/signals.md).
|
252
220
|
|
253
|
-
|
221
|
+
## Platform Constraints
|
254
222
|
|
255
|
-
|
223
|
+
Some platforms do not support all Puma features.
|
256
224
|
|
257
|
-
|
225
|
+
* **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).
|
226
|
+
* **Windows**: daemon mode is not supported due to a lack of fork(2).
|
258
227
|
|
259
|
-
|
228
|
+
## Known Bugs
|
260
229
|
|
261
|
-
|
262
|
-
|
263
|
-
Puma cluster responds to these signals:
|
264
|
-
|
265
|
-
- `TTIN` increment the worker count by 1
|
266
|
-
- `TTOU` decrement the worker count by 1
|
267
|
-
- `TERM` send `TERM` to worker. Worker will attempt to finish then exit.
|
268
|
-
- `USR2` restart workers
|
269
|
-
- `USR1` restart workers in phases, a rolling restart.
|
270
|
-
- `HUP` reopen log files defined in stdout_redirect configuration parameter
|
271
|
-
- `INT` equivalent of sending Ctrl-C to cluster. Will attempt to finish then exit.
|
272
|
-
- `CHLD`
|
273
|
-
|
274
|
-
A detailed guide to using UNIX signals with Puma can be found in the [signals documentation](https://github.com/puma/puma/blob/master/docs/signals.md).
|
275
|
-
|
276
|
-
### Release Directory
|
277
|
-
|
278
|
-
If your symlink releases into a common working directory (i.e., `/current` from Capistrano), Puma won't pick up your new changes when running phased restarts without additional configuration. You should set your working directory within Puma's config to specify the directory it should use. This is a change from earlier versions of Puma (< 2.15) that would infer the directory for you.
|
230
|
+
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:
|
279
231
|
|
280
232
|
```ruby
|
281
|
-
|
282
|
-
|
283
|
-
|
233
|
+
if %w(2.2.7 2.2.8 2.2.9 2.2.10 2.3.4 2.4.1).include? RUBY_VERSION
|
234
|
+
begin
|
235
|
+
require 'stopgap_13632'
|
236
|
+
rescue LoadError
|
237
|
+
end
|
238
|
+
end
|
284
239
|
```
|
285
240
|
|
286
|
-
|
241
|
+
## Deployment
|
287
242
|
|
288
|
-
Puma
|
243
|
+
Puma has support for Capistrano with an [external gem](https://github.com/seuros/capistrano-puma).
|
289
244
|
|
290
|
-
|
291
|
-
|
292
|
-
### Platform Constraints
|
293
|
-
|
294
|
-
Because of various platforms not being able to implement certain things, the following differences occur when Puma is used on different platforms:
|
295
|
-
|
296
|
-
* **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
|
297
|
-
* **JRuby**, **Windows**: cluster mode is not supported due to a lack of fork(2)
|
298
|
-
* **Windows**: daemon mode is not supported due to a lack of fork(2)
|
299
|
-
|
300
|
-
## pumactl
|
301
|
-
|
302
|
-
`pumactl` is a simple CLI frontend to the control/status app described above. Please refer to `pumactl --help` for available commands.
|
303
|
-
|
304
|
-
## Process Monitors
|
305
|
-
|
306
|
-
Process monitors or supervisors will at minimum provide start of Puma
|
307
|
-
on system boot. Modern process monitors like systemd or upstart
|
308
|
-
further provide continuous monitoring and restarts for increased
|
245
|
+
It is common to use process monitors with Puma. Modern process monitors like systemd or upstart
|
246
|
+
provide continuous monitoring and restarts for increased
|
309
247
|
reliability in production environments:
|
310
248
|
|
311
249
|
* [tools/jungle](https://github.com/puma/puma/tree/master/tools/jungle) for sysvinit (init.d) and upstart
|
312
250
|
* [docs/systemd](https://github.com/puma/puma/blob/master/docs/systemd.md)
|
313
251
|
|
314
|
-
## Capistrano deployment
|
315
|
-
|
316
|
-
Puma has support for Capistrano3 with an [external gem](https://github.com/seuros/capistrano-puma), you just need require that in Gemfile:
|
317
|
-
|
318
|
-
```ruby
|
319
|
-
gem 'capistrano3-puma'
|
320
|
-
```
|
321
|
-
And then execute:
|
322
|
-
|
323
|
-
```bash
|
324
|
-
bundle
|
325
|
-
```
|
326
|
-
|
327
|
-
Then add to Capfile
|
328
|
-
|
329
|
-
```ruby
|
330
|
-
require 'capistrano/puma'
|
331
|
-
```
|
332
|
-
|
333
|
-
and then
|
334
|
-
|
335
|
-
```bash
|
336
|
-
$ bundle exec cap puma:start
|
337
|
-
$ bundle exec cap puma:restart
|
338
|
-
$ bundle exec cap puma:stop
|
339
|
-
$ bundle exec cap puma:phased-restart
|
340
|
-
```
|
341
|
-
|
342
252
|
## Contributing
|
343
253
|
|
344
254
|
To run the test suite:
|
@@ -350,4 +260,4 @@ $ bundle exec rake
|
|
350
260
|
|
351
261
|
## License
|
352
262
|
|
353
|
-
Puma is copyright
|
263
|
+
Puma is copyright Evan Phoenix and contributors, licensed under the BSD 3-Clause license. See the included LICENSE file for details.
|