Files
FastapiAdmin/docker/redis/conf/redis.conf
T
zhangtao a8d29d4ab4 fix: 修复多项后端缺陷并加固安全与限流
- 修正 AI 会话表初始化及异步数据库 URI 处理
- 新增全局 API 与 WS 聊天限流,健康检查豁免
- 修复忘记密码接口防用户枚举与参数校验
- 修复 SSE 推送数据重复编码问题
- 修复 Cron 表达式 Quartz 问号兼容
- 修复存储模块权限标识前缀
- 新增过期日志清理与任务错误中文提示
2026-09-07 00:08:00 +08:00

18 lines
411 B
Plaintext
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.
# FastapiAdmin Redis 配置(容器内路径 /usr/local/etc/redis/redis.conf
# 密码由 docker-compose 的 command --requirepass 注入,勿写在此文件
# 持久化
appendonly yes
appendfsync everysec
save 900 1
save 300 10
save 60 10000
# 内存(与 compose 的 512m 容器限额匹配)
maxmemory 384mb
maxmemory-policy allkeys-lru
# 慢日志
slowlog-log-slower-than 10000
slowlog-max-len 128