mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 18:35:51 +02:00
93 lines
2.1 KiB
Go
93 lines
2.1 KiB
Go
package nginx
|
|
|
|
import (
|
|
"os"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/0xJacky/Nginx-UI/internal/docker"
|
|
"github.com/0xJacky/Nginx-UI/settings"
|
|
)
|
|
|
|
var (
|
|
mutex sync.Mutex
|
|
lastStdOut string
|
|
lastStdErr error
|
|
)
|
|
|
|
// TestConfig tests the nginx config
|
|
func TestConfig() (stdOut string, stdErr error) {
|
|
mutex.Lock()
|
|
defer mutex.Unlock()
|
|
if settings.NginxSettings.TestConfigCmd != "" {
|
|
return execShell(settings.NginxSettings.TestConfigCmd)
|
|
}
|
|
return execCommand("nginx", "-t")
|
|
}
|
|
|
|
// Reload reloads the nginx
|
|
func Reload() (stdOut string, stdErr error) {
|
|
mutex.Lock()
|
|
defer mutex.Unlock()
|
|
|
|
// Clear the modules cache when reloading Nginx
|
|
clearModulesCache()
|
|
|
|
if settings.NginxSettings.ReloadCmd != "" {
|
|
return execShell(settings.NginxSettings.ReloadCmd)
|
|
}
|
|
return execCommand("nginx", "-s", "reload")
|
|
}
|
|
|
|
// Restart restarts the nginx
|
|
func Restart() {
|
|
mutex.Lock()
|
|
defer mutex.Unlock()
|
|
|
|
// Clear the modules cache when restarting Nginx
|
|
clearModulesCache()
|
|
|
|
// fix(docker): nginx restart always output network error
|
|
time.Sleep(500 * time.Millisecond)
|
|
|
|
if settings.NginxSettings.RestartCmd != "" {
|
|
lastStdOut, lastStdErr = execShell(settings.NginxSettings.RestartCmd)
|
|
return
|
|
}
|
|
|
|
pidPath := GetPIDPath()
|
|
daemon := GetSbinPath()
|
|
|
|
lastStdOut, lastStdErr = execCommand("start-stop-daemon", "--stop", "--quiet", "--oknodo", "--retry=TERM/30/KILL/5", "--pidfile", pidPath)
|
|
if lastStdErr != nil {
|
|
return
|
|
}
|
|
|
|
if daemon == "" {
|
|
lastStdOut, lastStdErr = execCommand("nginx")
|
|
return
|
|
}
|
|
|
|
lastStdOut, lastStdErr = execCommand("start-stop-daemon", "--start", "--quiet", "--pidfile", pidPath, "--exec", daemon)
|
|
}
|
|
|
|
// GetLastOutput returns the last output of the nginx command
|
|
func GetLastOutput() (stdOut string, stdErr error) {
|
|
mutex.Lock()
|
|
defer mutex.Unlock()
|
|
return lastStdOut, lastStdErr
|
|
}
|
|
|
|
func IsNginxRunning() bool {
|
|
pidPath := GetPIDPath()
|
|
switch settings.NginxSettings.RunningInAnotherContainer() {
|
|
case true:
|
|
return docker.StatPath(pidPath)
|
|
case false:
|
|
if fileInfo, err := os.Stat(pidPath); err != nil || fileInfo.Size() == 0 {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
return false
|
|
}
|