nginx 413请求实体太大(客户端意图发送太大的身体)

时间:2016-10-19 19:11:29

标签: php wordpress nginx

我知道这个问题已被多次询问,但我已尝试了所有这些问题,并将client_max_body_size更新为0甚至更新16400M,但它没有帮助。我确实要求我的托管支持重启nginx和php fpm服务。

我的服务器配置是:

2GB RAM, Plesk服务器版本:Plesk 12.5.30 Wordpress版本:4.6.1 PHP versoin:7.0.12设置为在fastCGI application served by apache

运行php

该网站使用wordpress,我甚至无法从wordpress媒体上传器或任何其他形式上传大于100mb的文件。

从媒体上传器中,它在ajax post请求中出现此错误: POST https://transcriptionpanda.com/wp-admin/async-upload.php

在我的服务器日志中,我看到了这个nginx错误: 15271#0: *307 client intended to send too large body: 710634025 bytes

我的/etc/nginx/nginx.conf代码是:

#user  nginx;
worker_processes  1;

#error_log  /var/log/nginx/error.log;
#error_log  /var/log/nginx/error.log  notice;
#error_log  /var/log/nginx/error.log  info;

#pid        /var/run/nginx.pid;

include /etc/nginx/modules.conf.d/*.conf;

events {
    worker_connections  1024;
}


http {
client_max_body_size 0;
client_header_buffer_size 4k;
large_client_header_buffers  4 4k;
client_body_buffer_size  256k;
    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  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;
    #tcp_nodelay        on;

    #gzip  on;
    #gzip_disable "MSIE [1-6]\.(?!.*SV1)";

    server_tokens off;

    include /etc/nginx/conf.d/*.conf;
}

# override global parameters e.g. worker_rlimit_nofile
include /etc/nginx/*global_params;

我现在真的很无望,不知道该怎么办。较小的文件上传(100MB左右)。大于100MB的文件无法上传。

任何帮助都将不胜感激。

  

更新:   这是网站服务器的phpinfo链接:   https://transcriptionpanda.com/phpinfo.php

1 个答案:

答案 0 :(得分:1)

请检查以下配置 -

<强> Nginx的

client_max_body_size

<强> PHP

post_max_size
upload_max_filesize

然后重启。

来源: