修复ERR_INCOMPLETE_CHUNKED_ENCODING/NS_ERROR_NET_PARTIAL_TRANSFER

By admin, 27 四月, 2023
  1. 增加 Nginx 配置中的 proxy_buffer_sizeproxy_buffers 参数:
location / {
    proxy_pass http://backend;
    proxy_set_header Host $http_host;
    proxy_buffer_size 128k;
    proxy_buffers 4 256k;
    proxy_busy_buffers_size 256k;
}

通过增加 proxy_buffer_sizeproxy_buffers 参数,可以增加 Nginx 与后端服务器之间的缓冲区大小,从而避免数据传输不完整的问题。

  1. 增加 Nginx 配置中的 proxy_http_version 参数:
location / {
    proxy_pass http://backend;
    proxy_set_header Host $http_host;
    proxy_http_version 1.1;
    proxy_set_header Connection "";
}

通过增加 proxy_http_version 参数,可以使用 HTTP/1.1 协议与后端服务器进行通信,从而避免数据传输不完整的问题。

  1. 配置 Gzip 压缩功能:
gzip on;
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_http_version 1.0;
gzip_comp_level 2;
gzip_types text/plain application/x-javascript text/css application/xml;
gzip_vary on;

通过启用 Gzip 压缩功能,可以减少数据传输量,从而避免数据传输不完整的问题。

参考:

评论

Restricted HTML

  • 允许的HTML标签:<a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id> <img src>
  • 自动断行和分段。
  • 网页和电子邮件地址自动转换为链接。
验证码
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.
请输入"Drupal10"