<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -64,7 +64,6 @@ And you can run migrations with:
   # or with a version number
   rake schema:migrate version=1
 
-
 === Mappings
 
 Mappings are the Waves equivalent to routes.  An individual mapping consists of a request-matching construct and an arbitrary block.  When a request matches a mapping, Waves runs that block.  In the simplest case, you do all the response work in the block, a la {Sinatra}[http://sinatrarb.com/Home].  The standard Waves application also offers an MVC infrastructure, with a silent R for Resource.
@@ -155,5 +154,18 @@ The result is that you only need to define models, views, etc. &lt;i&gt;when the defau
     templates/         # Views expect templates to live here.
     views/             # (auto_load || auto_create)
 
+=== Web Server
+
+You can run on any {Rack-supported Web server}[], including Thin and Mongrel. Just edit your configuration file, like you did for your database settings(&lt;tt&gt;configurations/development.rb) and change the &lt;tt&gt;handler&lt;/tt&gt; parameter. The default is Mongrel. For example, to switch to Thin:
+
+  handler ::Rack::Handler::Thin, :Host =&gt; host, :Port =&gt; port
+
+In addition, you can also configure your Rack application the same way. Just edit the &lt;tt&gt;application&lt;/tt&gt; parameter:
+
+  application do
+    use ::Rack::ShowExceptions
+    use Rack::CommonLogger
+    run ::Waves::Dispatchers::Default.new
+  end
 
 </diff>
      <filename>README.rdoc</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>c4ab07016e05f49dd63e6ee59175c13ec030beb8</id>
    </parent>
  </parents>
  <author>
    <name>Dan Yoder</name>
    <email>dan@zeraweb.com</email>
  </author>
  <url>http://github.com/dyoder/waves/commit/ca31977914c895e4afa42ee36f50dd621f23206a</url>
  <id>ca31977914c895e4afa42ee36f50dd621f23206a</id>
  <committed-date>2008-06-18T00:38:30-07:00</committed-date>
  <authored-date>2008-06-18T00:38:30-07:00</authored-date>
  <message>Updated README to address Rack configuration.</message>
  <tree>ae050e65063dbda559176b401c3fc6ee4fdc7eae</tree>
  <committer>
    <name>Dan Yoder</name>
    <email>dan@zeraweb.com</email>
  </committer>
</commit>
