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/
<Proxy balancer://cluster>
# cluster members
BalancerMember http://127.0.0.1:6000
BalancerMember http://127.0.0.1:6001
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all