1. 设置nginx附件大小限制
    1.1 全局限制
    编辑/etc/nginx/nginx.conf,在http段中加入如下语句

    client_max_body_size 20m;

    即可把附件大小限制修改为20MB

    1.2 分server设置
    编辑/etc/nginx/sites-enabled/目录下的server配置文件,在server段中加入1.1中的代码即可

  2. 设置PHP附件大小限制
    编辑/etc/php/7.4/fpm/php.ini,修改以下三个参数

    upload_max_filesize = 20M ; 修改限制为20MB
    post_max_size = 20M ; 修改限制为20MB
    max_execution_time = 300 ; 相应提高页面允许执行时间
  3. 重启php和nginx服务

    systemctl restart php7.4-fpm
    systemctl restart nginx
  4. 参考
    https://blog.csdn.net/qq_40880022/article/details/121744438

    https://www.polarxiong.com/archives/typecho%E4%B8%AD%E4%BF%AE%E6%94%B9%E4%B8%8A%E4%BC%A0%E9%99%84%E4%BB%B6%E5%A4%A7%E5%B0%8F%E9%99%90%E5%88%B6.html#:~:text=typecho%E4%B8%AD,%E4%BA%861000M%E4%BA%86%E3%80%82

标签: none

添加新评论