hi,
I deployed my ror application successfully using capistrano, but when i brought up a browser point it to the application, it said 'server not found'.
here is my apache2.conf:
..
NameVirualHost *:80
<VirtualHost *:80>
ServerName hylog.daemon.com
DocumentRoot /home/work/hylog/current/public/
<Directory /home/work/hylog/current/public>
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
in browser i pointed it to http://hylog.daemon.com.. anyone know what might be wrong? I've installed passenger. thanks.