修改文件上传大小限制

This commit is contained in:
karl 2024-08-02 14:49:49 +08:00
parent 1172cac95c
commit 4805ccf949
1 changed files with 1 additions and 1 deletions

View File

@ -27,5 +27,5 @@ return [
'status_file' => runtime_path() . '/webman.status', 'status_file' => runtime_path() . '/webman.status',
'stdout_file' => runtime_path() . '/logs/stdout.log', 'stdout_file' => runtime_path() . '/logs/stdout.log',
'log_file' => runtime_path() . '/logs/workerman.log', 'log_file' => runtime_path() . '/logs/workerman.log',
'max_package_size' => 10 * 1024 * 1024 'max_package_size' => 20 * 1024 * 1024
]; ];