mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 02:15:48 +02:00
18 lines
471 B
Go
18 lines
471 B
Go
package nginx
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
func InitRouter(r *gin.RouterGroup) {
|
|
r.POST("ngx/build_config", BuildNginxConfig)
|
|
r.POST("ngx/tokenize_config", TokenizeNginxConfig)
|
|
r.POST("ngx/format_code", FormatNginxConfig)
|
|
r.POST("nginx/reload", Reload)
|
|
r.POST("nginx/restart", Restart)
|
|
r.POST("nginx/test", Test)
|
|
r.GET("nginx/status", Status)
|
|
r.POST("nginx_log", GetNginxLogPage)
|
|
}
|
|
|
|
func InitNginxLogRouter(r *gin.RouterGroup) {
|
|
r.GET("nginx_log", Log)
|
|
}
|