413 request entity too large nginx配置

创建于:2025-11-10 修改于:2025-11-10

413 request entity too large nginx配置

建议设置在localtion

vim /etc/nginx/conf.d/default.conf

  
location / {  
…  
client_max_body_size 64m; #具体参数按照你的需求设置  
…  
}  
  
💬 评论区