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
--~--~---------~--~----~------------~-------~--~----~
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 rubyonrails-talk@googlegroups.com
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to