blog
2026-09-03
0 阅读
影响php网站上传功能的参数
php.ini文件
upload_max_filesize = 200M post_max_size = 200M max_file_uploads = 20 max_execution_time = 300 max_input_time = 300
nginx server 块:
client_max_body_size 200M;
PHP-FPM pool(pool.d/*.conf):
request_terminate_timeout = 300;
改完必须重启才生效:systemctl restart php8.5-fpm,再 nginx -t && systemctl reload nginx。