ADJ網路實驗室
打印

[介紹] 如何解決 Nginx 出現“413 Request Entity Too Large”的錯誤

如何解決 Nginx 出現“413 Request Entity Too Large”的錯誤

在 Nginx Service底下...如果要上傳一個大文件,可是出現了錯誤提示 => 413 Request Entity Too Large
問了 Google 一下,發現是Nginx的錯誤提示。

解決方法:
打開nginx主配置文件nginx.conf,找到 http{} 段,添加

client_max_body_size 20m;


然後重新啟動 nginx ...這樣就可以囉~~






TOP

ARTERY.cn