GEMFILE that starts mongrel
gem 'rails', '3.1.0'
gem 'mongrel', '>=1.2.0.pre2'
GEMFILE that start WEBrick (not mongrel)
gem 'rails', '3.2.0.rc2'
gem 'mongrel', '>=1.2.0.pre2'
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Starting on Rails 3.2 you must specify the server you want to use, otherwise Webrick will be used.
So, to use mongrel, you must place the gem at your Gemfile AND start the server like this: