mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-16 04:24:57 +08:00
24 lines
612 B
Go
24 lines
612 B
Go
|
package router
|
||
|
|
||
|
import (
|
||
|
v1 "github.com/1Panel-dev/1Panel/agent/app/api/v1"
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
type NginxRouter struct {
|
||
|
}
|
||
|
|
||
|
func (a *NginxRouter) InitRouter(Router *gin.RouterGroup) {
|
||
|
groupRouter := Router.Group("openresty")
|
||
|
|
||
|
baseApi := v1.ApiGroupApp.BaseApi
|
||
|
{
|
||
|
groupRouter.GET("", baseApi.GetNginx)
|
||
|
groupRouter.POST("/scope", baseApi.GetNginxConfigByScope)
|
||
|
groupRouter.POST("/update", baseApi.UpdateNginxConfigByScope)
|
||
|
groupRouter.GET("/status", baseApi.GetNginxStatus)
|
||
|
groupRouter.POST("/file", baseApi.UpdateNginxFile)
|
||
|
groupRouter.POST("/clear", baseApi.ClearNginxProxyCache)
|
||
|
}
|
||
|
}
|