about summary refs log tree commit homepage
path: root/lib/rainbows.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rainbows.rb')
-rw-r--r--lib/rainbows.rb18
1 files changed, 11 insertions, 7 deletions
diff --git a/lib/rainbows.rb b/lib/rainbows.rb
index e151a32..f731a6a 100644
--- a/lib/rainbows.rb
+++ b/lib/rainbows.rb
@@ -77,15 +77,19 @@ module Rainbows
   end
   # :startdoc:
 
-  # the default max body size is 1 megabyte (1024 * 1024 bytes)
-  @client_max_body_size = 1024 * 1024
+  def self.defaults!
+    # the default max body size is 1 megabyte (1024 * 1024 bytes)
+    @client_max_body_size = 1024 * 1024
 
-  # the default keepalive_timeout is 5 seconds
-  @keepalive_timeout = 5
+    # the default keepalive_timeout is 5 seconds
+    @keepalive_timeout = 5
 
-  # 1024 bytes matches nginx, though Rails session cookies will typically
-  # need >= 1500...
-  @client_header_buffer_size = 1024
+    # 1024 bytes matches nginx, though Rails session cookies will typically
+    # need >= 1500...
+    @client_header_buffer_size = 1024
+  end
+
+  defaults!
 
   # :stopdoc:
   @alive = true