mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-14 13:24:14 +02:00
43 lines
801 B
Go
43 lines
801 B
Go
package nginx
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/0xJacky/Nginx-UI/internal/nginx"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// Reload reloads the nginx
|
|
func Reload(c *gin.Context) {
|
|
nginx.Control(nginx.Reload).Resp(c)
|
|
}
|
|
|
|
// TestConfig tests the nginx config
|
|
func TestConfig(c *gin.Context) {
|
|
nginx.Control(nginx.TestConfig).Resp(c)
|
|
}
|
|
|
|
// Restart restarts the nginx
|
|
func Restart(c *gin.Context) {
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"message": "ok",
|
|
})
|
|
go nginx.Restart()
|
|
}
|
|
|
|
// Status returns the status of the nginx
|
|
func Status(c *gin.Context) {
|
|
lastResult := nginx.GetLastResult()
|
|
if lastResult.IsError() {
|
|
lastResult.RespError(c)
|
|
return
|
|
}
|
|
|
|
running := nginx.IsRunning()
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"running": running,
|
|
"message": lastResult.GetOutput(),
|
|
"level": lastResult.GetLevel(),
|
|
})
|
|
}
|