Module: Unicorn::Const
Do not use. This module is for internal use only.
Relationships & Source Files | |
Defined in: | lib/unicorn/const.rb |
Constant Summary
-
CHUNK_SIZE =
The basic request body size we’ll try to read at once (16 kilobytes).
16 * 1024
-
DEFAULT_HOST =
default TCP listen host address (0.0.0.0, all interfaces)
"0.0.0.0"
-
DEFAULT_LISTEN =
default TCP listen address and port (0.0.0.0:8080)
"#{DEFAULT_HOST}:#{DEFAULT_PORT}"
-
DEFAULT_PORT =
default TCP listen port (8080)
8080
-
MAX_BODY =
Maximum request body size before it is moved out of memory and into a temporary file for reading (112 kilobytes). This is the default value of client_body_buffer_size.
1024 * 112