当前位置: > Linux服务器 > nginx >

Nginx “413 Request Entity Too Large”错误的解决方法

时间:2014-07-05 12:53来源:linux.it.net.cn 作者:IT网

客户端在测试服务器(nginx)上上传大的图片,报出错误消息:“413 Request Entity Too Large”。

解决方法:
打开nginx主配置文件nginx.conf,找到http{}段,添加:
client_max_body_size 20m;

以Centos下为例:
vi /usr/local/nginx/conf/nginx.conf
client_max_body_size 20m;

平常重启nginx:
kill -HUP `cat /usr/local/nginx/nginx.pid `

再上传就不报错了,恢复正常。

(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容