I created a new project on my RoR server and I want to redirect apache to pick up the new index file from my app/views/home/index.html.erb but it does not seem to work.
This is my virtual server conf file before i created the new index file
<VirtualHost *:80>
ServerName www.example.com
ServerAlias example.com
DocumentRoot /var/www/html/blog/public
ErrorLog logs/example.com-error_log
CustomLog logs/example.com-access_log common
<Directory /var/www/html/blog/public>
Allow from all
PassengerEnabled off
Options +Indexes +FollowSymLinks -MultiViews
</Directory>
</VirtualHost>
And after i deleted the public/index.html
<VirtualHost *:80>
ServerName www.example.com
ServerAlias example.com
DocumentRoot /var/www/html/blog/app/views/home/
ErrorLog logs/example.com-error_log
CustomLog logs/example.com-access_log common
<Directory /var/www/html/blog/app/views/home/>
Allow from all
PassengerEnabled off
Options +Indexes +FollowSymLinks -MultiViews
</Directory>
</VirtualHost>