查看完整版本: Nginx 出現 413 Request Entity Too Large 的解決方法


poing21 2014-7-17 10:51

Nginx 出現 413 Request Entity Too Large 的解決方法

Nginx出現的413 Request Entity Too Large 錯誤,這個錯誤一般在上傳文件的時候出現,<br><br>打開nginx主配置文件nginx.conf,找到http{}段,添加<br>[quote]<br>client_max_body_size 20M;<br>[/quote]<br>然后重啟 nginx 即可。<br><br>要是以php運行的話,這個大小 client_max_body_size 要和 php.ini 中的如下值的最大值差不多或者稍大,<br>這樣就不會因為提交數據大小不一致出現錯誤。<br>[quote]<br>post_max_size = 20M<br>upload_max_filesize = 20M<br>[/quote]<br>重啟 nginx 之後就會正常了
頁: [1]
查看完整版本: Nginx 出現 413 Request Entity Too Large 的解決方法