How to setup mongrel cluster setup on fedora

First install the following gems: #su #gem install mongrel #gem install mongrel_cluster #cd project_name #mongrel_rails cluster::configure -e production -p 3000 -N 3 -c /home/siwan/project_name -a 127.0.0.1 —-prefix /project_name # mongrel_rails cluster::start You are able to start your applicaton at http://127.0.0.1:3000, … Continue reading

solved: [warn] _default_ VirtualHost overlap on port 80, the first has precedence

Here I am using the Fedora 9 for this example. If you want to host many sites on one computer or machine. I added following lines to httpd.conf file(end of file). <VirtualHost  *:80> Options +FollowSymLinks ServerName example1.com DocumentRoot /var/www/html/example1 </ … Continue reading