about summary refs log tree commit homepage
path: root/DEPLOY
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-01-10 04:27:20 +0000
committerEric Wong <e@80x24.org>2015-01-10 04:34:03 +0000
commitc0d431d22ee1e2e69338189f9ce5a4b4abc07e6e (patch)
tree007022f0869232880d196efe6353aef71d0ba449 /DEPLOY
parent633b984a41cc3b036b47982ad72b5658ec54c918 (diff)
downloadrainbows-c0d431d22ee1e2e69338189f9ce5a4b4abc07e6e.tar.gz
wrongdoc was difficult to maintain because of the tidy-ffi
dependency and the HTML5 changes in Darkfish could not be
handled well by Tidy.

olddoc is superior as it generates leaner HTML which loads faster,
requires less scrolling and less processing power to render.
Aesthetic comparisons are subjective of course but completely
unimportant compared to speed and accessibility.

The presence of images and CSS on the old (Darkfish-based) site
probably set unreasonable expectations as to my ability and
willingness to view such things.  No more, the new website is
entirely simple HTML which renders well with even the wimpiest
browser (hell, olddoc even tries to generate readable raw HTML).
Diffstat (limited to 'DEPLOY')
-rw-r--r--DEPLOY10
1 files changed, 5 insertions, 5 deletions
diff --git a/DEPLOY b/DEPLOY
index 253a068..1566d43 100644
--- a/DEPLOY
+++ b/DEPLOY
@@ -13,26 +13,26 @@ processing of the request body as it is being uploaded.
 In this case, haproxy or any similar (non-request-body-buffering) load
 balancer should be used to balance requests between different machines.
 
-== nginx proxying to \Rainbows! or Unicorn
+== nginx proxying to \Rainbows! or unicorn
 
 For high-traffic applications, routing slow actions to \Rainbows! with
 nginx is recommended as nginx can serve static files faster and nginx
-can forward fast actions to Unicorn.
+can forward fast actions to unicorn.
 
           static files
             |
       nginx |--> slow actions --> Rainbows!
             |
-            `--> fast actions --> Unicorn
+            `--> fast actions --> unicorn
 
 Be sure to set <tt>proxy_buffering off</tt> in nginx for "slow actions"
-if you have Comet applications (but not for Unicorn).
+if you have Comet applications (but not for unicorn).
 
 == Denial-of-Service Concerns
 
 Since \Rainbows! is designed to talk to slow clients with long-held
 connections, it may be subject to brute force denial-of-service attacks.
-In Unicorn and Mongrel, we've already enabled the "httpready" accept
+In unicorn and Mongrel, we've already enabled the "httpready" accept
 filter for FreeBSD and the TCP_DEFER_ACCEPT option in Linux; but it is
 still possible to build clients that work around and fool these
 mechanisms.