rainbows.git  about / heads / tags
Unicorn for sleepy apps and slow clients
blob 1b5c3a88d046f803117828b4c811875ee60a5b05 586 bytes (raw)
$ git show v0.1.1:lib/rainbows/const.rb	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
# -*- encoding: binary -*-

module Rainbows

  module Const
    RAINBOWS_VERSION = '0.1.1'

    include Unicorn::Const

    RACK_DEFAULTS = ::Unicorn::HttpRequest::DEFAULTS.merge({

      # we need to observe many of the rules for thread-safety even
      # with Revactor or Rev, so we're considered multithread-ed even
      # when we're not technically...
      "rack.multithread" => true,
      "SERVER_SOFTWARE" => "Rainbows! #{RAINBOWS_VERSION}",
    })

    CONN_CLOSE = "Connection: close\r\n"
    CONN_ALIVE = "Connection: keep-alive\r\n"
    LOCALHOST = "127.0.0.1"

  end
end

git clone https://yhbt.net/rainbows.git