Files
xianyan/docs/toolsapi/application/extra/rate_limit.php
Developer bd937b02f3 php
2026-06-25 23:28:34 +08:00

108 lines
3.9 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
/**
* 全局限流排队配置文件
* 创建时间: 2026-06-25
* 更新时间: 2026-06-25
* 作用: 控制全站网页端请求的MySQL查询频率限制
*/
return [
// 是否启用限流排队
'enabled' => true,
// 每秒最大MySQL查询次数全局
'max_queries_per_second' => 3,
// 时间窗口(秒),固定窗口
'time_window' => 1,
// 计数器存储路径
'counter_path' => RUNTIME_PATH . 'rate_limit/',
// 队列计数器文件
'queue_counter_file' => RUNTIME_PATH . 'rate_limit/queue_count.txt',
// 验证码有效期30分钟
'captcha_valid_duration' => 1800,
// Cookie名称验证通过后免排队
'bypass_cookie_name' => 'queue_bypass',
// 白名单配置
'whitelist' => [
// 静态资源扩展名(不计数不限流)
'static_extensions' => ['.css', '.js', '.jpg', '.jpeg', '.png', '.gif', '.svg', '.ico', '.woff', '.woff2', '.ttf', '.eot', '.webp', '.mp4', '.mp3'],
// 免限流的模块/控制器路径前缀
'path_prefixes' => [
'/admin', // 后台管理
'/api/', // API接口客户端请求
'/health', // 健康检查
'/queue/', // 排队页面自身
'/captcha', // 验证码接口
],
// 免限流的页面类型index模块下的控制器
'exempt_controllers' => [
// 用户认证页面
'user', // 登录/注册/找回密码等
// 静态内容页面
'about', // 关于我们
'link', // 友情链接
'doc', // 文档页面
// 纯计算工具页面(不查数据库)
'tool', // 工具页面(部分工具是纯计算)
],
// 免限流的具体工具页面tool控制器下的action
'exempt_tools' => [
// 纯计算类工具
'calculator', 'bmi', 'age', 'angle', 'bazi', 'bazipaipan',
'bosongfenbu', 'brick', 'car_sign', 'changshi', 'chengfabiao',
'concrete', 'country', 'cube_root', 'curtain', 'daxiaoxie',
'decoration', 'edd', 'ershoufang', 'excel', 'eyesight',
'favicon', 'floors', 'gongjijin', 'grsds', 'hexagon',
'hexagon', 'huangli', 'id_soft', 'image_to_base', 'jianfan',
'jiugongge', 'jjjsq', 'jueduizhi', 'led', 'lingcunzhengqu',
'lipstick', 'lixi', 'loan', 'loans', 'manicure', 'mdq_quiz',
'mingpian', 'minority', 'modulo', 'mortgage', 'moyu',
'muscle', 'named', 'necktie', 'nevoid_phase', 'nick',
'nzjgrsds', 'ocr', 'paint', 'percentage', 'periodic_table',
'photo_compression', 'picseal', 'prepayment', 'qianziwen',
'qr', 'qr_parse', 'raokouling', 'rec_audio', 'relative',
'rmbzdx', 'rmbzmydx', 'safe_color', 'safe_period',
'shengxiao', 'suoxie', 'taiyu', 'techartgroup', 'today',
'universe', 'warring', 'xingjiaozishi', 'yidaliyu',
'yingyu', 'yinniyu', 'yuenanyu', 'zangyu', 'zhongyaocai',
'zhongyong', 'zhouyi', 'zhuangzi', 'zizhitongjian',
'zuci', 'zuowen', 'zuozhuan',
// 错误页面
'404', 'error',
],
// 免限流的IP服务器IP等
'ip_whitelist' => [
'127.0.0.1',
'::1',
],
],
// 首次访问免排队用户分享的URL直接打开
'first_visit_bypass' => true,
// 首次访问Cookie名称
'first_visit_cookie' => 'first_visit_bypass',
// 首次访问Cookie有效期60秒
'first_visit_duration' => 60,
// 排队页面自动轮询间隔(毫秒)
'queue_poll_interval' => 2000,
// 排队页面最大等待时间(秒),超过后提示用户稍后再试
'queue_max_wait' => 300,
];