Passenger booting Rails 3 application in wrong environment

Passenger gives you the possibility to define in which environment your app should be started.
This has to be added to the VirtualHost configuration for Apache for Rails 2 applications:

RailsEnv development

When running Rails 3, you need

RackEnv development
Thomas Eisenbarth