webman-admin/config/server.php
mkm 8cb2fc3d3c env(config): 更新环境变量配置并调整相关功能
- 修改了 .example.env 文件中的数据库和 Redis 配置
- 更新了 IndexController 中的密码处理逻辑
- 替换了 var-dumper 依赖从 max 到 next
- 调整了 Redis 和服务器配置文件以使用环境变量
- 更新了异常处理配置
2025-07-10 11:10:12 +08:00

32 lines
960 B
PHP

<?php
/**
* This file is part of webman.
*
* Licensed under The MIT License
* For full copyright and license information, please see the MIT-LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @author walkor<walkor@workerman.net>
* @copyright walkor<walkor@workerman.net>
* @link http://www.workerman.net/
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
return [
'listen' => getenv('HOST'),
'transport' => 'tcp',
'context' => [],
'name' => 'webman',
'count' => cpu_count() * 4,
'user' => '',
'group' => '',
'reusePort' => false,
'event_loop' => '',
'stop_timeout' => 2,
'pid_file' => runtime_path() . '/webman.pid',
'status_file' => runtime_path() . '/webman.status',
'stdout_file' => runtime_path() . '/logs/stdout.log',
'log_file' => runtime_path() . '/logs/workerman.log',
'max_package_size' => 10 * 1024 * 1024
];