From f7d08acd5e0650658383e3d3f86d6ff5b49e9030 Mon Sep 17 00:00:00 2001 From: Joshua Peek Date: Tue, 15 Jul 2008 23:32:31 -0500 Subject: Add some useful comments to rackup config --- railties/config.ru | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'railties/config.ru') diff --git a/railties/config.ru b/railties/config.ru index 1b9aec18b2..43492a2dcc 100644 --- a/railties/config.ru +++ b/railties/config.ru @@ -1,3 +1,17 @@ +# Rackup Configuration +# +# Start Rails mongrel server with rackup +# $ rackup -p 3000 config.ru +# +# Start server with webrick (or any compatible Rack server) instead +# $ rackup -p 3000 -s webrick config.ru + +# Require your environment file to bootstrap Rails require File.dirname(__FILE__) + '/config/environment' + +# Static server middleware +# You can remove this extra check if you use an asset server use Rails::Rack::Static + +# Dispatch the request run ActionController::Dispatcher.new -- cgit v1.2.3