- 修复 LeaderboardController 查询不存在的 sign 字段导致 500 错误 - 修复 leaderboard/index 和 guestbook/index 引用不存在的 layouts.app 布局 - 将排行榜和留言板改为独立 HTML 页面结构(含 Tailwind CDN) - 修复退出登录返回 JSON 而非重定向的问题,现在会正确跳转回登录页 - 将 REDIS_CLIENT 从 phpredis 改为 predis(兼容无扩展环境) - 新增 RoomSeeder 自动创建默认公共大厅房间 - 新增 Nginx 生产环境配置示例(含 WebSocket 反向代理) - 重写 README.md 为完整的中文部署指南 - 修复 rooms/index 和 chat/frame 中 Alpine.js 语法错误 - 将 chat.js 加入 Vite 构建配置 - 新增验证码配置文件
56 lines
1.5 KiB
PHP
56 lines
1.5 KiB
PHP
<?php
|
|
|
|
return [
|
|
'disable' => env('CAPTCHA_DISABLE', false),
|
|
'characters' => ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
|
|
'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd',
|
|
'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's',
|
|
't', 'u', 'v', 'w', 'x', 'y', 'z', 0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
|
|
'fontsDirectory' => dirname(__DIR__).'/assets/fonts',
|
|
'bgsDirectory' => dirname(__DIR__).'/assets/backgrounds',
|
|
'default' => [
|
|
'length' => 6,
|
|
'width' => 345,
|
|
'height' => 65,
|
|
'quality' => 90,
|
|
'math' => false,
|
|
'expire' => 60,
|
|
'encrypt' => false,
|
|
],
|
|
'flat' => [
|
|
'length' => 6,
|
|
'fontColors' => ['#2c3e50', '#c0392b', '#16a085', '#c0392b', '#8e44ad', '#303f9f', '#f57c00', '#795548'],
|
|
'width' => 345,
|
|
'height' => 65,
|
|
'math' => false,
|
|
'quality' => 100,
|
|
'lines' => 6,
|
|
'bgImage' => true,
|
|
'bgColor' => '#28faef',
|
|
'contrast' => 0,
|
|
],
|
|
'mini' => [
|
|
'length' => 3,
|
|
'width' => 60,
|
|
'height' => 32,
|
|
],
|
|
'inverse' => [
|
|
'length' => 5,
|
|
'width' => 120,
|
|
'height' => 36,
|
|
'quality' => 90,
|
|
'sensitive' => true,
|
|
'angle' => 12,
|
|
'sharpen' => 10,
|
|
'blur' => 2,
|
|
'invert' => false,
|
|
'contrast' => -5,
|
|
],
|
|
'math' => [
|
|
'length' => 9,
|
|
'width' => 120,
|
|
'height' => 36,
|
|
'quality' => 90,
|
|
],
|
|
];
|