Skip navigation.

My Scattered Techie Notes

while mastering the firebending

Posts tagged with "ruby"

How to make Phusion Passenger run in development mode

, , , ...

Simply add this to your virtual host configuration file

RailsEnv development


so it may looks like this

<VirtualHost *>
ServerName example.com
DocumentRoot /home/yourname/htdocs/example.com/public
RailsEnv development
</VirtualHost>


don't forget to restart your Apache.