about summary refs log tree commit homepage
path: root/lib/rainbows.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-05-03 01:18:45 +0000
committerEric Wong <normalperson@yhbt.net>2011-05-03 01:18:45 +0000
commit8fb350e00c1421907cbc36cbf29c499b8ad051e4 (patch)
treecbe6d3baf46519db1c9a27c5e4aa500f701aea7c /lib/rainbows.rb
parente9a229c639dd6bda08a3fa8ce14af3688dc2ba63 (diff)
downloadrainbows-8fb350e00c1421907cbc36cbf29c499b8ad051e4.tar.gz
We won't forget to reset defaults on SIGHUP anymore.
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