Ruby on Apache with mod_ruby

apache, ruby

Solution

mod-ruby is not really the preferred way to go in the ruby community.

The easiest way for you to start it to install passenger (trough gem) and configure apache to use it.

It is really easy to do,

you can follow the official tutorial here: http://www.modrails.com/install.html

Problem

I really want to run some ruby code on Apache server. I've got `libapache2-mod-ruby` and `libapache-ruby1.8` installed (complete list of what is installed is here). What do I do now to make it run (here`s an example)?

Original source