fix: P0遗留修复 + ADR/SOP文档

- requirements.txt: 添加 passlib[bcrypt] 依赖
- deploy-server/nginx.conf: /ws/ 路径添加 access_log off
- docs/ADRs/: 新增 4 个 ADR 决策记录
- docs/SOPs/: 新增 4 个 SOP 操作规程
This commit is contained in:
Simon
2026-06-15 00:03:11 +08:00
parent eb28a0f2ef
commit 64d6812ec3
11 changed files with 1277 additions and 0 deletions
+2
View File
@@ -72,6 +72,8 @@ python-dotenv==1.0.1
pyotp==2.9.0
# bcrypt: 密码哈希库(用于本地密码认证)
bcrypt==4.1.2
# passlib: 密码哈希兼容库(bcrypt 前端封装)
passlib[bcrypt]==1.7.4
# qrcode: 二维码生成(用于 OTP 绑定)
qrcode[pil]==7.4.2
# pillow: 图片处理(qrcode[pil] 依赖)