web-dev-qa-db-ja.com

"413 Request Entity Too Large" Error Rails 3.2 Passenger Phusion

Rails app using Rails 3.2.3、Ruby 1.9.3、and Phusion Passenger with Nginx module 。アプリユーザーは大きなファイルをアップロードする必要があります。nginx.conf(下記)のロケーションブロックにディレクティブclient_max_body_size 500M;を追加し、Ctrl-Cを使用してnginxを停止して開始し、nginxとpassenger startを停止しました。 nginxを再起動します。ただし、127 mbのファイルをアップロードしようとすると、「413 Request Entity Too Large」というエラーが表示されます。見落としているものを誰かに教えてもらえますか?

ありがとう、

私のnginx.conf

#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    passenger_root /Users/mcmahling/.rvm/gems/Ruby-1.9.3-p125/gems/passenger-3.0.12;
    passenger_Ruby /Users/mcmahling/.rvm/wrappers/Ruby-1.9.3-p125/Ruby;
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  165;

    #gzip  on;

    server {
        listen       80;
        server_name  localhost;
        client_max_body_size       4G;

        #charset koi8-r;

        #access_log  logs/Host.access.log  main;

        location / {
             root   html;
             index  index.html index.htm;
             client_max_body_size       4G;
                       client_body_buffer_size    128k;
             client_body_temp_path      /usr/local/nginx/client_body_temp;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual Host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443;
    #    server_name  localhost;

    #    ssl                  on;
    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_timeout  5m;

    #    ssl_protocols  SSLv2 SSLv3 TLSv1;
    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers   on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}
18
user437969

client_max_body_size 4G;4g;または500m;に変更してサーバーブロックを挿入します

27
Mike

Nginx Error 41 および http://forum.slicehost.com/index.php?p=/discussion/1714/nginx-413-when-uploading-file-1mb-から判断または-larger/p1client_max_body_sizeを1回だけ、おそらくサーバーセクションでのみ指定してみてください。ただし、それは疑わしいようです。

また、別の回答で述べたように、値として「4g」が必要だと思います。

4
muffinista

これは単なる推測であり、Rails、Ruby、nginxも知らないので、私の考えが当てはまるかどうかはわかりませんが、とにかくここにあります。おそらく役立つでしょう...

ファイルがどのように転送されるかを確認しましたか?あなたの問題は、私のAjaxリクエストが神秘的に失敗した状況を思い出させます。調査の結果、GETを介して送信されたすべてのリクエストが見つかりました(そもそもこれは間違った方法でした)。 POSTに変更すると、問題が解決しました。

そこにファイルを送信しているので、まったく異なるものになる可能性があります(サイズが2KiB程度のデータがありました)。

0
kratenko

client_max_body_size 10m; ';'で私のために働きますおよびで、NginxとUnicorn、またはApache ...などを再起動します。

@MaffooClockが言うように、httpブロック内。

0
Vitor Rocha