nginx上传大文件出现413

我用的是nginx+apache

(1)nginx设置最大上传限制

http {

 client_max_body_size 256m;

}

(2)php.ini的限制;

upload_max_filesize = 20M

post_max_size = 128M

(3)apache虚拟主机设置 (LimitRequestBody )

# ServerAdmin [email protected]

  DocumentRoot "/www/wwwroot/online.dgc"

  LimitRequestBody 524288000

  ErrorLog "/www/weblogs/newtest.dgc_httpd_error.log"

你可能感兴趣的:(nginx,nginx,运维)