diff options
author | Rob Zolkos <rob@funkyhive.com.au> | 2010-10-15 21:40:32 +1100 |
---|---|---|
committer | Rob Zolkos <rob@funkyhive.com.au> | 2010-10-15 21:40:32 +1100 |
commit | ebe61bf37c174a98019225d4aa227c6d45e69a59 (patch) | |
tree | 64421c3dcd868b5ae8564acb6ffc8aa90442b43f /railties/guides/source/getting_started.textile | |
parent | 8be96a3bcf1a21bac38437512cac10ac9c1f952f (diff) | |
download | rails-ebe61bf37c174a98019225d4aa227c6d45e69a59.tar.gz rails-ebe61bf37c174a98019225d4aa227c6d45e69a59.tar.bz2 rails-ebe61bf37c174a98019225d4aa227c6d45e69a59.zip |
WEBrick is the default web server, not Mongrel [#186 state:resolved]
Diffstat (limited to 'railties/guides/source/getting_started.textile')
-rw-r--r-- | railties/guides/source/getting_started.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index 42b3313752..3f433c9704 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -282,7 +282,7 @@ You actually have a functional Rails application already. To see it, you need to $ rails server </shell> -This will fire up an instance of the Mongrel web server by default (Rails can also use several other web servers). To see your application in action, open a browser window and navigate to "http://localhost:3000":http://localhost:3000. You should see Rails' default information page: +This will fire up an instance of the WEBrick web server by default (Rails can also use several other web servers). To see your application in action, open a browser window and navigate to "http://localhost:3000":http://localhost:3000. You should see Rails' default information page: !images/rails_welcome.png(Welcome Aboard screenshot)! |