Files
tcpserver-flow/webman/config/session.php
T
zimoyin 043306819b feat(webman): 初始化webman框架基础配置与核心代码
- 添加基础配置文件,包括app、autoload、bootstrap、container、database、dependence、exception、log、middleware
- 新增完整Dockerfile和docker-compose.yml,支持容器化运行
- 增加webman控制台插件配置及依赖管理文件composer.json
- 创建app目录下核心控制器IndexController及进程Http和Monitor
- 实现日志工具类Logger,支持多级别及异常格式化
- 配置.gitignore优化忽略无关文件和目录
- 初始化.idea项目配置文件,支持开发环境集成
- 完善启动流程,支持自动加载配置、路由及中间件
- 增加文件变更监控和内存监控机制,提升开发体验
- 设定默认时区为Asia/Shanghai,开启调试模式
- 配置日志输出格式,支持多种日志处理器与颜色高亮
- 提供公共函数文件框架,便于扩展自定义功能
2026-03-02 21:55:33 +08:00

66 lines
1.5 KiB
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
*/
use Webman\Session\FileSessionHandler;
use Webman\Session\RedisSessionHandler;
use Webman\Session\RedisClusterSessionHandler;
return [
'type' => 'file', // or redis or redis_cluster
'handler' => FileSessionHandler::class,
'config' => [
'file' => [
'save_path' => runtime_path() . '/sessions',
],
'redis' => [
'host' => '127.0.0.1',
'port' => 6379,
'auth' => '',
'timeout' => 2,
'database' => '',
'prefix' => 'redis_session_',
],
'redis_cluster' => [
'host' => ['127.0.0.1:7000', '127.0.0.1:7001', '127.0.0.1:7001'],
'timeout' => 2,
'auth' => '',
'prefix' => 'redis_session_',
]
],
'session_name' => 'PHPSID',
'auto_update_timestamp' => false,
'lifetime' => 7*24*60*60,
'cookie_lifetime' => 365*24*60*60,
'cookie_path' => '/',
'domain' => '',
'http_only' => true,
'secure' => false,
'same_site' => '',
'gc_probability' => [1, 1000],
];