Note : i am newbie to ruby on rails and server hosting , i unable to express my vision as question , please forgive me if i am wrong or correct me.
Hi , i am having an one product developed using ruby on rails , going to host in an dedicated server with 32 GB Ram and 8 Core Server Processor. Each client should have seperate DB and separate rails instance. I am replicating – duplicating code for each client with separate folders and giving different database names and so each serving as an different instance.
For Example:
I am having one primary temp domain
www.product.com
For each client i need to have separate sub domain mapped to same server with same port(80)
but with different rails instance name
www.client1.product.com
www.client2.product.com
www.clientn.product.com
As i know if i start rails instance , each will start at seperate port no’s
client1 with start at port 3001
client2 with start at port 3002
client3 with start at port 3003
What my question is how do i map all the instances with port 80 with appropriate identical sub domains
if i access
www.client4.product.com , i need to get app running in port 3004
Update:
Can anyone please post steps for phusion passenger + Nginx for the above scenario
Here is a sample example of a minimal server block for nginx + passenger
The usual way of configuring nginx is to make a subdirectory “sites-available” where you put a file named “client1.foobar.com” containing this snippet , then make a symbolic link for this file in another subdirectory named “sites-enabled”. Finally you add the following line in you nginx.conf inside the http block
Do not forget to reload/restart your nginx.
This way of using symbolic link allows you to easily disable any site you want by deleting the symbolic link without losing your config file.
You can find some example and more documentation here : http://www.modrails.com/documentation/Users%20guide%20Nginx.html