- 修改了 .example.env 文件中的数据库和 Redis 配置 - 更新了 IndexController 中的密码处理逻辑 - 替换了 var-dumper 依赖从 max 到 next - 调整了 Redis 和服务器配置文件以使用环境变量 - 更新了异常处理配置
23 lines
643 B
PHP
23 lines
643 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 [
|
|
'default' => [
|
|
'host' =>getenv('REDIS_HOST'),
|
|
'password' => getenv('REDIS_PASSWORD'),
|
|
'port' => getenv('REDIS_PORT'),
|
|
'database' => getenv('REDIS_DB'),
|
|
],
|
|
];
|