微信小程式上傳檔案報錯 413
錯誤如下:
Failed to load resource: the server responded with a status of 413 (Request Entity Too Large)
使用Nginx伺服器上傳檔案時,浏覽器報413請求過大
原因:因為伺服器限制了檔案上傳大小,或者說上傳檔案超過了伺服器限制
解決:修改nginx.conf配置檔案
将以下代碼粘貼到nginx.conf檔案中:
client_max_body_size 20M #多少兆 根據自己需求
可以選擇在http{ }中設定:client_max_body_size 20m;
也可以選擇在server{ }中設定:client_max_body_size 20m;
還可以選擇在location{ }中設定:client_max_body_size 20m;
三者有差別:
設定到http{}内,控制全局nginx所有請求封包大小;
設定到server{}内,控制該server的所有請求封包大小;
設定到location{}内,控制滿足該路由規則的請求封包大小;
參考:https://www.fujieace.com/web/413-request-entity-too-large.html
posted on
2021-01-07 14:15
求脫單
閱讀(336)
評論(0)
編輯
收藏
舉報