diff options
author | Loïc Hoguin <[email protected]> | 2018-11-18 23:03:30 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2018-11-18 23:03:30 +0100 |
commit | 6cc3b0ccca6c06592c2a1881cae39945de805747 (patch) | |
tree | c01e57a9ee88a524a2ca6b43b13f831bd96e009e /doc/src/manual/cowboy_http.asciidoc | |
parent | 8d6d78575f64055be2d0992d8ccf802d9efa1faa (diff) | |
download | cowboy-6cc3b0ccca6c06592c2a1881cae39945de805747.tar.gz cowboy-6cc3b0ccca6c06592c2a1881cae39945de805747.tar.bz2 cowboy-6cc3b0ccca6c06592c2a1881cae39945de805747.zip |
Document cowboy_stream_h/cowboy_compress_h
Diffstat (limited to 'doc/src/manual/cowboy_http.asciidoc')
-rw-r--r-- | doc/src/manual/cowboy_http.asciidoc | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/doc/src/manual/cowboy_http.asciidoc b/doc/src/manual/cowboy_http.asciidoc index 3c33ab7..e0587dc 100644 --- a/doc/src/manual/cowboy_http.asciidoc +++ b/doc/src/manual/cowboy_http.asciidoc @@ -11,7 +11,7 @@ as a Ranch protocol. == Options -// @todo Might be worth moving cowboy_clear/tls/stream_h options +// @todo Might be worth moving cowboy_clear/tls options // to their respective manual, when they are added. [source,erlang] @@ -19,7 +19,6 @@ as a Ranch protocol. opts() :: #{ chunked => boolean(), connection_type => worker | supervisor, - env => cowboy_middleware:env(), http10_keepalive => boolean(), idle_timeout => timeout(), inactivity_timeout => timeout(), @@ -32,11 +31,9 @@ opts() :: #{ max_method_length => non_neg_integer(), max_request_line_length => non_neg_integer(), max_skip_body_length => non_neg_integer(), - middlewares => [module()], proxy_header => boolean(), request_timeout => timeout(), sendfile => boolean(), - shutdown_timeout => timeout(), stream_handlers => [module()] } ---- @@ -63,10 +60,6 @@ connection_type (supervisor):: Whether the connection process also acts as a supervisor. -env (#{}):: - -Middleware environment. - http10_keepalive (true):: Whether keep-alive is enabled for HTTP/1.0 connections. @@ -118,10 +111,6 @@ max_skip_body_length (1000000):: Maximum length Cowboy is willing to skip when the user code did not read the body fully. When the remaining length is too large or unknown Cowboy will close the connection. -middlewares ([cowboy_router, cowboy_handler]):: - -Middlewares to run for every request. - proxy_header (false):: Whether incoming connections have a PROXY protocol header. The @@ -138,10 +127,6 @@ Whether the sendfile syscall may be used. It can be useful to disable it on systems where the syscall has a buggy implementation, for example under VirtualBox when using shared folders. -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. |