OneBot: Leantime 改造版源码(BOM/Univer 表格/AI 接管/品牌替换等)

This commit is contained in:
wangruiguo
2026-09-03 18:49:20 +08:00
commit d647428529
3501 changed files with 1988906 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#!/bin/bash
echo "=== ufw 状态 ==="
sudo ufw status 2>/dev/null || echo "ufw 未启用/未安装"
echo ""
echo "=== ufw 8081 放行 ==="
sudo ufw allow 8081/tcp 2>/dev/null && echo "已放行 8081" || true
echo ""
echo "=== 最终验证:内网 IP 访问 ==="
curl -s -o /dev/null -w "192.168.1.44:8081 HTTP=%{http_code}\n" --connect-timeout 5 http://192.168.1.44:8081/
echo ""
echo "=== 登录页品牌最终确认 ==="
curl -s http://192.168.1.44:8081/auth/login | grep -oE "<title>[^<]*</title>" | head -1