RoR サーバーで新しいプロジェクトを作成しました。apache をリダイレクトして、app/views/home/index.html.erb から新しいインデックス ファイルを取得したいのですが、うまくいかないようです。
これは、新しいインデックス ファイルを作成する前の仮想サーバーの conf ファイルです。
<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>
そして、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>