web-dev-qa-db-ja.com

ファイルをアップロードするときのNginx502 Bad Gateway

Node.jsベースのWebアプリにファイルをアップロードしようとすると、次のエラーが発生します。

2014/05/20 04:30:20 [error] 31070#0: *5 upstream prematurely closed connection while reading response header from upstream, client: ... [clipped]

ここではフロントエンドプロキシを使用しています:

  upstream app_mywebsite {
      server 127.0.0.1:3000;
  }

  server {
      listen 0.0.0.0:80;
      server_name {{ MY IP}} mywebsite;
      access_log /var/log/nginx/mywebsite.log;

      # pass the request to the node.js server with the correct headers and much more can be added, see nginx config options
      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_set_header X-NginX-Proxy true;

        proxy_pass http://app_mywebsite;
        proxy_redirect off;
    # web socket support
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
      }
   }

これは私のnginx.confファイルです:

user www-data;
worker_processes 4;
pid /run/nginx.pid;

events {
    worker_connections 2048;
    multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 20;
    types_hash_max_size 2048;
    # server_tokens off;

    # server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

    include /etc/nginx/mime.types;
    # default_type application/octet-stream;
    default_type text/html;
    charset UTF-8;

    ##
    # Logging Settings
    ##

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    ##
    # Gzip Settings
    ##

    gzip on;
    gzip_disable "msie6";

    gzip_vary on;
    gzip_proxied any;
    gzip_min_length 256;
    gzip_comp_level 5;
    gzip_buffers 16 8k;
    gzip_http_version 1.1;
    gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;

    ##
    # nginx-naxsi config
    ##
    # Uncomment it if you installed nginx-naxsi
    ##

    #include /etc/nginx/naxsi_core.rules;

    ##
    # nginx-passenger config
    ##
    # Uncomment it if you installed nginx-passenger
    ##

    #passenger_root /usr;
    #passenger_Ruby /usr/bin/Ruby;

    ##
    # Virtual Host Configs
    ##

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}

これをより良くデバッグする方法について何かアイデアはありますか?私が見つけたものは実際には機能していません(たとえば、proxy_passから末尾のスラッシュを削除する

2
bob_cobb

Nodeアプリケーションでエラーが報告されているかどうかを確認することをお勧めしますか?過去にphpファイルのアップロードでnginxを使用すると、ファイルのサイズが原因で502が発生することがあったので、ファイルを増やしました次の「#BodySizeclient_max_body_size900m;」を使用してマスターnginx.confで

1
Cronparser

あなたのエラーメッセージは、あなたのアプリがおそらくリクエスト全体を受け入れており、応答が構築される前に死んでいるように聞こえます。そうであれば、nginxではなくデバッグする必要があるのはアプリです。ただし、仮定を確認してください。直接確認してください。

トラフィックをスヌープして(たとえば、tcpdump、ngrep、wiresharkを使用して)、nginxがアプリに正常に接続し、リクエスト全体を渡していることを確認します。このチェックの結果により、接続のどちらの端をデバッグする必要があるかが確認されます。

失敗がリクエストのサイズにまったく依存しているかどうかをテストする価値があるかもしれません。本当に小さなファイルで試してみてください。

0
mc0e

次のnginxディレクティブを調整するのはどうですか?

  • proxy_buffer_size
  • proxy_busy_buffers_size
  • proxy_temp_file_write_size
  • proxy_max_temp_file_size
0
minniux