:arrow_up:升级依赖以及添加一些环境变量
All checks were successful
continuous-integration/drone/tag Build is passing

This commit is contained in:
coward
2025-02-25 08:52:52 +08:00
parent 06df5fa048
commit 9c560ff352
4 changed files with 39 additions and 8 deletions

View File

@@ -3,7 +3,10 @@ package http
import (
"fmt"
"gitee.ltd/lxh/logger/log"
"github.com/gin-contrib/pprof"
"github.com/spf13/cast"
"net/http"
"os"
"wireguard-ui/config"
"wireguard-ui/http/router"
)
@@ -16,6 +19,10 @@ func Kernel() error {
handler := router.InitRouter()
addr := fmt.Sprintf(":%d", config.Config.Http.Port)
if cast.ToBool(os.Getenv("ENABLED_PPROF")) {
pprof.Register(handler, "/monitoring")
}
httpServer := http.Server{
Addr: addr,
Handler: handler,