quiet some mismatched indentation warnings
[unicorn.git] / lib / unicorn / const.rb
blob33ab4accee140dff1f326629ded18b660b9f265e
1 # -*- encoding: binary -*-
3 module Unicorn::Const # :nodoc:
4   # default TCP listen host address (0.0.0.0, all interfaces)
5   DEFAULT_HOST = "0.0.0.0"
7   # default TCP listen port (8080)
8   DEFAULT_PORT = 8080
10   # default TCP listen address and port (0.0.0.0:8080)
11   DEFAULT_LISTEN = "#{DEFAULT_HOST}:#{DEFAULT_PORT}"
13   # The basic request body size we'll try to read at once (16 kilobytes).
14   CHUNK_SIZE = 16 * 1024
16   # Maximum request body size before it is moved out of memory and into a
17   # temporary file for reading (112 kilobytes).  This is the default
18   # value of client_body_buffer_size.
19   MAX_BODY = 1024 * 112
20 end
21 require_relative 'version'