共计 195 个字符,预计需要花费 1 分钟才能阅读完成。
最近迁移服务器重新安装了 nginx,当我使用 wordpress 上传图片的时候显示 HTTP 错误。
检查 Nginx error_log 可以发现 body 太大导致错误,nginx 默认 body 大小为 1M
解决方案:
编辑 nginx.conf 配置文件
编辑 http {} 端内容加入 clien_max_body_size 参数, 加入后重启 nginx 即可
http{client_max_body_size 100M;}
正文完