2016-12-22 15:19:38 +01:00
|
|
|
= cowboy_http2(3)
|
|
|
|
|
|
|
|
== Name
|
|
|
|
|
|
|
|
cowboy_http2 - HTTP/2
|
|
|
|
|
|
|
|
== Description
|
|
|
|
|
|
|
|
The module `cowboy_http2` implements HTTP/2
|
|
|
|
as a Ranch protocol.
|
|
|
|
|
2016-12-22 18:13:25 +01:00
|
|
|
== Options
|
2016-12-22 15:19:38 +01:00
|
|
|
|
2017-05-05 13:48:25 +02:00
|
|
|
// @todo Might be worth moving cowboy_clear/tls/stream_h options
|
|
|
|
// to their respective manual, when they are added.
|
|
|
|
|
2016-12-22 15:19:38 +01:00
|
|
|
[source,erlang]
|
|
|
|
----
|
|
|
|
opts() :: #{
|
2018-04-04 17:23:37 +02:00
|
|
|
connection_type => worker | supervisor,
|
|
|
|
enable_connect_protocol => boolean(),
|
|
|
|
env => cowboy_middleware:env(),
|
|
|
|
inactivity_timeout => timeout(),
|
2018-04-25 16:55:52 +02:00
|
|
|
max_decode_table_size => non_neg_integer(),
|
|
|
|
max_encode_table_size => non_neg_integer(),
|
2018-04-04 17:23:37 +02:00
|
|
|
middlewares => [module()],
|
|
|
|
preface_timeout => timeout(),
|
|
|
|
shutdown_timeout => timeout(),
|
|
|
|
stream_handlers => [module()]
|
2016-12-22 15:19:38 +01:00
|
|
|
}
|
|
|
|
----
|
|
|
|
|
|
|
|
Configuration for the HTTP/2 protocol.
|
|
|
|
|
|
|
|
This configuration is passed to Cowboy when starting listeners
|
2017-06-07 15:15:54 +02:00
|
|
|
using `cowboy:start_clear/3` or `cowboy:start_tls/3` functions.
|
2016-12-22 15:19:38 +01:00
|
|
|
|
|
|
|
It can be updated without restarting listeners using the
|
|
|
|
Ranch functions `ranch:get_protocol_options/1` and
|
|
|
|
`ranch:set_protocol_options/2`.
|
|
|
|
|
2016-12-22 18:13:25 +01:00
|
|
|
The default value is given next to the option name:
|
2016-12-22 15:19:38 +01:00
|
|
|
|
2017-05-05 13:48:25 +02:00
|
|
|
connection_type (supervisor)::
|
|
|
|
Whether the connection process also acts as a supervisor.
|
|
|
|
|
2018-04-04 17:23:37 +02:00
|
|
|
enable_connect_protocol (false)::
|
|
|
|
Whether to enable the extended CONNECT method to allow
|
|
|
|
protocols like Websocket to be used over an HTTP/2 stream.
|
2018-04-25 16:55:52 +02:00
|
|
|
This option is experimental and disabled by default.
|
2018-04-04 17:23:37 +02:00
|
|
|
|
2016-12-22 15:19:38 +01:00
|
|
|
env (#{})::
|
|
|
|
Middleware environment.
|
|
|
|
|
2017-05-05 13:48:25 +02:00
|
|
|
inactivity_timeout (300000)::
|
|
|
|
Time in ms with nothing received at all before Cowboy closes the connection.
|
|
|
|
|
2018-04-25 16:55:52 +02:00
|
|
|
max_decode_table_size (4096)::
|
|
|
|
Maximum header table size used by the decoder. This is the value advertised
|
|
|
|
to the client. The client can then choose a header table size equal or lower
|
|
|
|
to the advertised value.
|
|
|
|
|
|
|
|
max_encode_table_size (4096)::
|
|
|
|
Maximum header table size used by the encoder. The server will compare this
|
|
|
|
value to what the client advertises and choose the smallest one as the
|
|
|
|
encoder's header table size.
|
|
|
|
|
2016-12-22 15:19:38 +01:00
|
|
|
middlewares ([cowboy_router, cowboy_handler])::
|
|
|
|
Middlewares to run for every request.
|
|
|
|
|
|
|
|
preface_timeout (5000)::
|
|
|
|
Time in ms Cowboy is willing to wait for the connection preface.
|
|
|
|
|
2017-05-05 13:48:25 +02:00
|
|
|
shutdown_timeout (5000)::
|
|
|
|
Time in ms Cowboy will wait for child processes to shut down before killing them.
|
|
|
|
|
|
|
|
stream_handlers ([cowboy_stream_h])::
|
|
|
|
Ordered list of stream handlers that will handle all stream events.
|
|
|
|
|
2016-12-22 15:19:38 +01:00
|
|
|
== Changelog
|
|
|
|
|
2018-04-25 16:55:52 +02:00
|
|
|
* *2.4*: Add the options `max_decode_table_size` and `max_encode_table_size`.
|
|
|
|
* *2.4*: Add the experimental option `enable_connect_protocol`.
|
2016-12-22 15:19:38 +01:00
|
|
|
* *2.0*: Protocol introduced.
|
|
|
|
|
|
|
|
== See also
|
|
|
|
|
|
|
|
link:man:cowboy(7)[cowboy(7)],
|
|
|
|
link:man:cowboy_http(3)[cowboy_http(3)],
|
|
|
|
link:man:cowboy_websocket(3)[cowboy_websocket(3)]
|