サーバーで Rails アプリを提供しようとしています。
テストアプリがインストールされています.apache2とパッセンジャーがインストールされています.apache2.confに以下を追加しました.
# Include the virtual host configurations:
Include sites-enabled/
NameVirtualHost localhost:80
<VirtualHost localhost:80>
ServerName 192.168.1.67
DocumentRoot /home/john/Public/test-app
</VirtualHost>
明らかに、ローカル IP への呼び出しを Rails アプリにリダイレクトする必要があるため、何かを誤解しています。そうではない。デフォルトのApache index.htmlに移動します。
私は何を間違っていますか?