1Panel/agent/constant/nginx.go

16 lines
259 B
Go
Raw Normal View History

2024-07-23 14:48:37 +08:00
package constant
const (
NginxScopeServer = "server"
NginxScopeHttp = "http"
NginxScopeOut = "out"
NginxReload = "reload"
NginxCheck = "check"
NginxRestart = "restart"
ConfigNew = "add"
ConfigUpdate = "update"
ConfigDel = "delete"
)