the server responded with a status of 413 (Request Entity Too Large) 解决
作者:互联网
前端上传文件,本地测试好的,放到服务器上出现了这个错误:the server responded with a status of 413 (Request Entity Too Large)
问题原因:服务器上使用了nginx,是nginx做了大小的限制
解决方法:
增加如下红色代码,然后重启 就解决了。
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
client_max_body_size 100M; #添加这一行代码
server {
listen 8088;
server_name 172.21.0.13;
.......后面无关的配置省略
标签:status,Request,server,Large,nginx,Too,Entity 来源: https://www.cnblogs.com/yclh/p/16607375.html