上传文件时报 413 Request Entity Too Large
如果应用了 ngin 动态转发:
批改 nginx.conf 配置,在 http{} 中退出:
client_max_body_size 3024m;
而后重启 nginx
后盾限度:
springBoot 在配置文件中增加:
servlet:
multipart:
max-file-size: 3024MB
max-request-size: 3024MB
批改 nginx.conf 配置,在 http{} 中退出:
client_max_body_size 3024m;
而后重启 nginx
springBoot 在配置文件中增加:
servlet:
multipart:
max-file-size: 3024MB
max-request-size: 3024MB