Sniper Abandon
2009-May-28 06:15 UTC
two ROR project with one application server , is it possible
two rails project with one application server(only one mongrel) , is it possible ? if yes , then how ? -- Posted via http://www.ruby-forum.com/.
Marnen Laibow-Koser
2009-May-28 07:22 UTC
Re: two ROR project with one application server , is it possible
Sniper Abandon wrote:> two rails project with one application server(only one mongrel) ,Generally speaking, you can''t even do *one* Rails project with only one Mongrel instance.> is it possible ? > if yes , then how ?If you can say a bit more about what you''re trying to do, I''m sure someone will be able to help further. Best, -- Marnen Laibow-Koser http://www.marnen.org marnen-sbuyVjPbboAdnm+yROfE0A@public.gmane.org -- Posted via http://www.ruby-forum.com/.
Mukund
2009-May-28 07:46 UTC
Re: two ROR project with one application server , is it possible
I assume you are limited to one available port on a static address that you want to use for multiple Rails applications. You can accomplish this by configuring Apache so that it talks to the correct mongrel instance based on the incoming request. Example: http://xyz.com/app1 would go to mongrel instance on port xxx and http://xyz.com/app2 would go to mongrel instance on port yyy. A simpler way to do this is to use mod_rails. Configuring multiple Rails app in subdomains is quite easy with mod_rails. http://www.modrails.com On May 28, 11:15 am, Sniper Abandon <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> two rails project with one application server(only one mongrel) , > is it possible ? > if yes , then how ? > -- > Posted viahttp://www.ruby-forum.com/.