Typo with Phusion Passenger

I’m running this blog now with the Phusion Passenger mod for Apache.

Normally this Apache directive should be enough to start your rails app.

VirtualHost *:80;
servername mydomain.tld
documentroot /var/www/html/typo/public
/VirtualHost&gt;</pre>

I had to change it to the following though to get it to work.

VirtualHost *:80;
servername mydomain.tld
PassengerEnabled on
documentroot /var/www/html/typo/public
/VirtualHost