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 =
# File 'lib/unicorn/const.rb', line 15
The basic request body size we’ll try to read at once (16 kilobytes).
16 * 1024
-
DEFAULT_HOST =
# File 'lib/unicorn/const.rb', line 6
default TCP listen host address (0.0.0.0, all interfaces)
"0.0.0.0" -
DEFAULT_LISTEN =
# File 'lib/unicorn/const.rb', line 12
default TCP listen address and port (0.0.0.0:8080)
"#{DEFAULT_HOST}:#{DEFAULT_PORT}" -
DEFAULT_PORT =
# File 'lib/unicorn/const.rb', line 9
default TCP listen port (8080)
8080 -
MAX_BODY =
# File 'lib/unicorn/const.rb', line 20
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