web客户端 http error 413

nginx作为服务器,web客户端做上传的时候报错

Http Error 413

解决办法:

编辑nginx.conf,添加最大上传参数 client_max_body_size.

server {        
    client_max_body_size 20M; # 添加最大上传参数       
    listen       80;        
    server_name  localhost;
    ******
 }


你可能感兴趣的:(web客户端 http error 413)