Module: Pitchfork::Const

Defined in:
lib/pitchfork/const.rb,
lib/pitchfork/version.rb

Overview

:nodoc:

Constant Summary collapse

DEFAULT_HOST =

default TCP listen host address (0.0.0.0, all interfaces)

"0.0.0.0"
DEFAULT_PORT =

default TCP listen port (8080)

8080
DEFAULT_LISTEN =

default TCP listen address and port (0.0.0.0:8080)

"#{DEFAULT_HOST}:#{DEFAULT_PORT}"
CHUNK_SIZE =

The basic request body size we’ll try to read at once (16 kilobytes).

16 * 1024
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
UNICORN_VERSION =
'6.1.0'