On Thu, Jun 4, 2009 at 2:16 PM, JannaB <[email protected]> wrote:
> > Passenger is not available for windows. However, it seems for a simple > deployment configuration, under windows, I can just simply put the > virtual hosts section into http.conf, e.g.: > > <VirtualHost *> > ServerName mysite > DocumentRoot C:/InstantRails/rails_apps/mysite > ProxyPass / http://localhost:3000/ > ProxyPassReverse / http://localhost:3000 > </VirtualHost> > > add a line into my windows hosts file: > > 127.0.0.1 mysite > > fire up apache, fire up mongrel with: > > ruby script/server -e production -p 3000 > > and away I go. Am I wrong? Isn't this about the simplest and easiest > means of deployment? -Janna Janna, I'm thinking that this will work to a certain point before you decide to use something like a mongrel cluster which has better management for your Rails application. Also, you might be so inclined to port Passenger to Windows platform because Apache exists for Windows. Good luck, -Conrad > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

