1Panel/backend/constant/website.go

24 lines
376 B
Go
Raw Normal View History

2022-10-28 17:04:57 +08:00
package constant
const (
WebRunning = "Running"
WebStopped = "Stopped"
DateLayout = "2006-01-02"
DefaultDate = "1970-01-01"
2022-11-21 11:27:56 +08:00
ProtocolHTTP = "HTTP"
ProtocolHTTPS = "HTTPS"
2022-12-12 15:36:45 +08:00
2022-12-13 17:20:13 +08:00
NewApp = "new"
InstalledApp = "installed"
2022-12-12 15:36:45 +08:00
Deployment = "deployment"
Static = "static"
Proxy = "proxy"
2022-12-13 17:20:13 +08:00
SSLExisted = "existed"
SSLAuto = "auto"
SSLManual = "manual"
2022-12-12 15:36:45 +08:00
)