error:rpc失敗。http 413 curl 22 the request url returned error:413fatal:遠端意外結束通話了。
fatal:遠端意外結束通話了。
原因在於nginx配置檔案中的client_max_body_size,client_max_body_size如果不設定的話,預設為1m。
在nginx配置檔案中(nginx.conf)新增如下**:
client_max_body_size 8m;client_body_buffer_size 128k;
fastcgi_intercept_errors on;
我的完整配置如下:
location /
http 413錯誤解決方法
HTTP 413錯誤解決方法
環境 ubuntu 16.04 nginx 1.5.6 通過post上傳檔案過大時,會出現413錯誤碼 前端開啟開發者模式,在輸出臺的位置會出現 failed to load resource the server responded with a status of 413 request ent...
HTTP 413錯誤解決方法
這是由於上傳檔案過大引起的。檢查 如果是springmvc的框架,用mutipartfile上傳的檔案,先檢查配置檔案中的最大上傳檔案膽小。spring mvc.xml 檢視上傳的檔案是否超出了最大限制,根據自己的情況進行修改。檢查nginx的檔案上傳大小的配置。方法 修改nginx配置檔案,配置客...
伺服器返回HTTP 413錯誤解決方法
環境 ubuntu 16.04 nginx 1.4.7 通過post上傳檔案過大時,會出現413錯誤碼 前端開啟開發者模式,在輸出臺的位置會出現 failed to load resource the server responded with a status of 413 request ent...