Sha256: 5660c7e153c7391005449f6d7b02020740188019368ef561adc931ed3b56962f
Contents?: true
Size: 653 Bytes
Versions: 46
Compression:
Stored size: 653 Bytes
Contents
# -*- encoding: binary -*- module Unicorn::Const # :nodoc: # default TCP listen host address (0.0.0.0, all interfaces) DEFAULT_HOST = "0.0.0.0" # default TCP listen port (8080) DEFAULT_PORT = 8080 # default TCP listen address and port (0.0.0.0:8080) DEFAULT_LISTEN = "#{DEFAULT_HOST}:#{DEFAULT_PORT}" # The basic request body size we'll try to read at once (16 kilobytes). CHUNK_SIZE = 16 * 1024 # 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. MAX_BODY = 1024 * 112 end require_relative 'version'
Version data entries
46 entries across 46 versions & 6 rubygems