上传文件时 Nginx 502 Bad Gateway

上传文件时 Nginx 502 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 中删除尾部的斜杠

答案1

可能需要检查您的 Node 应用程序,看看它是否报告了任何错误?过去使用 nginx 进行 php 文件上传时,由于文件大小,我偶尔会收到 502 错误,因此我在主 nginx.conf 中使用以下“#Body Size client_max_body_size 900m;”增加了它,希望这能有所帮助

答案2

在我看来,您的错误消息像是您的应用可能接受了整个请求,然后在构造响应之前死机了,如果是这样,那么您需要调试的是您的应用,而不是 nginx。不过,请检查假设 - 直接验证。

监听流量(例如使用 tcpdump、ngrep 和/或 wireshark)以检查 nginx 是否成功连接到您的应用并向其传递整个请求。此检查的结果将确认您需要调试连接的哪一端。

可能值得测试失败是否完全取决于请求的大小。用一个非常小的文件试试。

答案3

那么如何调整以下 nginx 指令呢?

  • 代理缓冲区大小
  • proxy_busy_buffers_size
  • proxy_temp_file_write_size
  • proxy_max_temp_file_size

答案4

该问题可能是由 PM2 引起的。如果您启用了监视,则应用程序将在每次文件更改(以及新上传)时重新启动。解决方案可能是完全禁用监视或将上传文件夹添加到忽略列表。更多:https://pm2.keymetrics.io/docs/usage/watch-and-restart/

相关内容