私が持っているもの:Ubuntu 12.04 LTS
ruby-1.9.3-p194
Rails 3.2.7
Nginx+Passengerを介してRailsアプリケーションにアクセスしようとしています。
/opt/nginx/conf/nginx.confファイルは次のとおりです。
user test;
worker_processes 1;
events {
worker_connections 1024;
}
http {
passenger_root /home/test/.rvm/gems/ruby-1.9.3-p194/gems/passenger-3.0.14;
passenger_ruby /home/test/.rvm/wrappers/ruby-1.9.3-p194/ruby;
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name 10.11.11.178;
root /efiling/public;
passenger_enabled on;
location / {
root html;
index index.html index.htm;
}
....
リンク10.11.11.178を入力すると、 nginxへようこそ!
しかし、私はRailsアプリのデフォルトページを取得することを期待しています。
なにが問題ですか?前もって感謝します。
@ジャシュワント。まず、@Brandonが述べたように行を削除しました。次に、my_app\publicフォルダーからindex.htmlファイルを削除しました。