[Rails] Re: sub domain + different rails application

2013-12-17 Thread Karthik Sirasanagandla
Use a webserver like nginx to route traffic to different rails application. Sample config in nginx can be as below: *server {* * # Subdomain* * listen 80;* * server_name subdomain1.domain.com;* * location / {* *proxy_pass http://127.0.0.1:8000/;* * }* *}* *server {* * # Subdomain* *

[Rails] Re: sub domain + different rails application

2013-12-17 Thread ThoWac
Hi, if you use Apache Webserver and PhusionPassenger you can take a look her: http://www.modrails.com/documentation/Users%20guide%20Apache.html#working_with_apache_conf Am Dienstag, 17. Dezember 2013 07:15:05 UTC+1 schrieb saravanan p: Hello friends, Is there any way to implement the