1

私は最近、ステージング アプリと本番アプリを使用する Ruby on Rails プロジェクトを引き継ぎました。残念ながら、これを設定したのは MIA です。「デプロイ」スクリプト (Capistrano) を実行してステージング サーバーにデプロイしましたが、問題が発生しました。

nginx ログに次のように表示されます。

nginxに慣れていません。誰かがこれが何を意味するのか教えてもらえますか?

nginx.conf

##################
# STAGING SETTINGS
    upstream staging_mongrel {
        server 127.0.0.1:8003;
        }

    server {
        listen       80;
        server_name  staging.removed.org;
        root /var/www/apps/staging/current/public;

        index  index.html index.htm;
        location / {
            proxy_set_header  X-Real-IP  $remote_addr;
            proxy_set_header  X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header Host $http_host;
            proxy_redirect false;

            proxy_connect_timeout     90;
            proxy_send_timeout       400;
            proxy_read_timeout      3600;

            client_max_body_size     20m;

            if (-f $request_filename/index.html) {
                 rewrite (.*) $1/index.html break;
            }
            if (-f $request_filename.html) {
                rewrite (.*) $1.html break;
            }
            if (!-f $request_filename) {
                proxy_pass http://staging_mongrel;
                break;
            }
         }
         error_page   500 502 503 504  /50x.html;
         location = /50x.html {
             root   html;
         }
    }
}
4

1 に答える 1