Read more

Using Passenger Standalone for development

Henning Koch
November 18, 2014Software engineer at makandra GmbH

For our production servers we use Passenger as a Ruby application server. While it is possible to use Passenger for development as an Apache module, the installation process is not for the faint of heart.

Illustration online protection

Rails Long Term Support

Rails LTS provides security patches for old versions of Ruby on Rails (2.3, 3.2, 4.2 and 5.2)

  • Prevents you from data breaches and liability risks
  • Upgrade at your own pace
  • Works with modern Rubies
Read more Show archive.org snapshot

Luckily Passenger also comes as a standalone binary which requires zero configuration.

You can Passenger Standalone as a replacement for Webrick or Thin if you'd like to:

  • Use SSL certificates locally
  • Get performance behavior that is closer to what you'll get on production servers
  • Get a full-featured Ruby application server without configuration

Usage

  1. Install Passenger Standalone with gem install passenger
  2. Inside any Rails project, start Passenger Standalone with passenger start
Posted by Henning Koch to makandra dev (2014-11-18 22:18)