后台:修复直播开播页空白(补全 watch 导入);控制台展示应用带宽观测与 HTTP 流量统计

Made-with: Cursor
This commit is contained in:
whm
2026-03-26 16:05:48 +08:00
parent e6ac5a107a
commit 0da93fb1be
6 changed files with 338 additions and 4 deletions

View File

@@ -82,6 +82,7 @@ func main() {
r := gin.Default()
r.MaxMultipartMemory = 32 << 20 // 大单片先落临时文件;整体体积受 Nginx client_max_body_size 限制
r.Use(middleware.ErrorLogger())
r.Use(middleware.TrafficMeter())
// CORSALLOWED_ORIGINS 为空则允许所有来源;否则仅允许配置的域名)
allowedOriginsEnv := os.Getenv("ALLOWED_ORIGINS")