about summary refs log tree commit homepage
path: root/lib/rainbows/const.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rainbows/const.rb')
-rw-r--r--lib/rainbows/const.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rainbows/const.rb b/lib/rainbows/const.rb
index 1018623..e707ca5 100644
--- a/lib/rainbows/const.rb
+++ b/lib/rainbows/const.rb
@@ -7,7 +7,7 @@ module Rainbows
 
     include Unicorn::Const
 
-    RACK_DEFAULTS = ::Unicorn::HttpRequest::DEFAULTS.merge({
+    RACK_DEFAULTS = Unicorn::HttpRequest::DEFAULTS.update({
       "SERVER_SOFTWARE" => "Rainbows! #{RAINBOWS_VERSION}",
 
       # using the Rev model, we'll automatically chunk pipe and socket objects
@@ -17,7 +17,7 @@ module Rainbows
 
     CONN_CLOSE = "Connection: close\r\n"
     CONN_ALIVE = "Connection: keep-alive\r\n"
-    LOCALHOST = "127.0.0.1"
+    LOCALHOST = Unicorn::HttpRequest::LOCALHOST
 
     # client IO object that supports reading and writing directly
     # without filtering it through the HTTP chunk parser.