Files
huangjingfen/pro_v3.5.1/config/ajcaptcha.php
apple ae8b866319 feat(fsgx): 管理后台与部署相关更新
- admin: 路由守卫修复空白页、addRoute、devServer 端口与代理
- admin: package.json 生产构建去掉 NODE_OPTIONS openssl
- ajcaptcha: 滑块验证码改用 file 缓存避免 Redis NOAUTH
- nginx-crmeb: 增加 81 端口站点
- docs: deploy 补充 NOAUTH/Redis 说明,新增 H5 部署脚本与 nginx 示例
- 其他: database、start-api、swoole ini、uniapp 资源等

Made-with: Cursor
2026-03-21 02:33:14 +08:00

60 lines
2.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
declare(strict_types=1);
return [
'font_file' => '', //自定义字体包路径, 不填使用默认值
//文字验证码
'click_world' => [
'backgrounds' => []
],
//滑动验证码
'block_puzzle' => [
/*背景图片路径, 不填使用默认值, 支持string与array两种数据结构。string为默认图片的目录array索引数组则为具体图片的地址*/
'backgrounds' => [
public_path() . 'statics/images/ajcaptcha1.jpg',
public_path() . 'statics/images/ajcaptcha2.jpg',
public_path() . 'statics/images/ajcaptcha3.jpg',
public_path() . 'statics/images/ajcaptcha4.jpg',
public_path() . 'statics/images/ajcaptcha5.jpg',
public_path() . 'statics/images/ajcaptcha6.jpg',
],
/*模板图,格式同上支持string与array*/
'templates' => [],
'offset' => 10, //容错偏移量
'is_cache_pixel' => true, //是否开启缓存图片像素值,开启后能提升服务端响应性能(但要注意更换图片时,需要清除缓存)
'is_interfere' => true, //开启干扰图
],
//水印
'watermark' => [
'fontsize' => 12,
'color' => '#000000',
'text' => ''
],
'cache' => [
// file 存储:生产环境 Redis 密码错误时避免 ajcaptcha 报 NOAUTH业务主缓存仍用 config/cache.php
'constructor' => static function ($options) {
return app()->make(\think\Cache::class)->store('file');
},
'method' => [
//遵守PSR-16规范不需要设置此项tp6, laravel,hyperf。如tp5就不支持tp5缓存方法是rm,所以要配置为"delete" => "rm"
/**
* 'get' => 'get', //获取
* 'set' => 'set', //设置
* 'delete' => 'delete',//删除
* 'has' => 'has' //key是否存在
*/
],
'options' => [
//如果您依然使用\Fastknife\Utils\CacheUtils做为您的缓存驱动那么您可以自定义缓存配置。
'expire' => 300,//缓存有效期 默认为0 表示永久缓存)
'prefix' => '', //缓存前缀
'path' => '', //缓存目录
'serialize' => [], //缓存序列化和反序列化方法
]
]
];