Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've setup Passenger + Apache + rvm on a Media Temple (dv) in the past with success. I didn't need to create a config.ru file at any time.

On a new machine I'm trying to setup whenever I tried Rails 2.1.0 or 2.2.2 or 2.3.14, Passenger complains about a missing config.ru file.

So I created config.ru

require File.dirname(__FILE__) + '/config/environment'
run ActionController::Dispatcher.new

But it doesn't work with Rails 2.1.0. It works with Rails 2.2.2 and 2.3.14. The error I get with 2.1.0 and a freshly generated application is

wrong number of arguments (0 for 1)

Backtrace

0 config.ru 7   in `initialize'
1 config.ru 7   in `new'
2 config.ru 7   
3 /home/passenger3ruby187/.rvm/gems/ree-1.8.7-2012.02@global/gems/rack-1.4.1/lib/rack/builder.rb    51  in `instance_eval'
4 /home/passenger3ruby187/.rvm/gems/ree-1.8.7-2012.02@global/gems/rack-1.4.1/lib/rack/builder.rb    51  in `initialize'
5 config.ru 1   in `new'
6 config.ru

Setup

Rails: 2.1.0

RVM: rvm 1.17.0 (stable) by Wayne E. Seguin , Michal Papis [https://rvm.io/]

Ruby: ruby 1.8.7 (2012-02-08 MBARI 8/0x6770 on patchlevel 358) [x86_64-linux], MBARI 0x6770, Ruby Enterprise Edition 2012.02

Passenger: passenger (3.0.7) installed apache2 module

Apache: 2.2.2

apache vhost configuration

ServerName example.com ServerAlias www.example.com DocumentRoot /var/www/vhosts/example.com/web/production/current/public/

AllowOverride all Options -MultiViews

RackBaseURI / RackEnv production PassengerHighPerformance on PassengerEnabled on

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.