Hi, i am running two rails application on my server both on the same ip. Now i got new ips and tried to deploy a new application on this ip.
The mongrel installation went normal and the mongrel servers are starting up. But every time when i trie to load a site there is a Template Error. ActionView::TemplateError (No such file or directory - sessions/new) in sessions/new: It seems like no template is found. I am running a debian etch server with Rails 2.0.2 behind an Apache 2.2.3 This is my apache host configuration NameVirtualHost 10.0.0.90:80 <VirtualHost 10.0.0.90:80> ServerName servername ServerAlias servername.de DocumentRoot /var/www/serverroot/current ProxyPass / balancer://cluster/ ProxyPassReverse / balancer://cluster/ </VirtualHost> <Proxy balancer://cluster> # cluster members BalancerMember http://127.0.0.1:6000 BalancerMember http://127.0.0.1:6001 </Proxy> ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Deploying Rails" group. To post to this group, send email to rubyonrails-deployment@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-deployment?hl=en -~----------~----~----~----~------~----~------~--~---