Browse Source

fix: 修改文件引用

pull/6033/head
ssonglius11 4 months ago
parent
commit
9b36f047fd
  1. 4
      core/middleware/proxy.go

4
core/middleware/proxy.go

@ -10,7 +10,7 @@ import (
"github.com/1Panel-dev/1Panel/core/app/api/v1/helper" "github.com/1Panel-dev/1Panel/core/app/api/v1/helper"
"github.com/1Panel-dev/1Panel/core/constant" "github.com/1Panel-dev/1Panel/core/constant"
"github.com/1Panel-dev/1Panel/core/xpack/utlis/proxy" "github.com/1Panel-dev/1Panel/core/utils/xpack"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
) )
@ -22,7 +22,7 @@ func Proxy() gin.HandlerFunc {
} }
currentNode := c.Request.Header.Get("CurrentNode") currentNode := c.Request.Header.Get("CurrentNode")
if len(currentNode) != 0 && currentNode != "127.0.0.1" { if len(currentNode) != 0 && currentNode != "127.0.0.1" {
if err := proxy.Proxy(c, currentNode); err != nil { if err := xpack.Proxy(c, currentNode); err != nil {
helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrProxy, err) helper.ErrorWithDetail(c, constant.CodeErrBadRequest, constant.ErrProxy, err)
return return
} }

Loading…
Cancel
Save