1Panel/backend/constant/nginx.go

16 lines
259 B
Go
Raw Permalink Normal View History

2022-11-30 21:40:05 +08:00
package constant
const (
NginxScopeServer = "server"
NginxScopeHttp = "http"
2022-12-01 00:41:50 +08:00
NginxScopeOut = "out"
2022-11-30 21:40:05 +08:00
NginxReload = "reload"
NginxCheck = "check"
NginxRestart = "restart"
2022-12-13 18:54:46 +08:00
ConfigNew = "add"
ConfigUpdate = "update"
ConfigDel = "delete"
2022-11-30 21:40:05 +08:00
)