feat: Add automated ChatGPT account registration with backend API, TLS client, and fingerprinting, alongside new frontend pages for configuration, monitoring, and upload.

This commit is contained in:
2026-02-03 02:39:08 +08:00
parent 389b8eca28
commit 51ba54856d
18 changed files with 1382 additions and 674 deletions

View File

@@ -162,6 +162,9 @@ func startServer(cfg *config.Config) {
mux.HandleFunc("/api/team-reg/import", api.CORS(api.HandleTeamRegImport))
mux.HandleFunc("/api/team-reg/clear-logs", api.CORS(api.HandleTeamRegClearLogs))
// CodexAuth 代理池 API
mux.HandleFunc("/api/codex-proxy", api.CORS(api.HandleCodexProxies))
// 嵌入的前端静态文件
if web.IsEmbedded() {
webFS := web.GetFileSystem()