1Panel/backend/constant/website.go

29 lines
474 B
Go
Raw Normal View History

2022-10-28 09:04:57 +00:00
package constant
const (
WebRunning = "Running"
WebStopped = "Stopped"
DateLayout = "2006-01-02"
DefaultDate = "1970-01-01"
2022-11-21 03:27:56 +00:00
ProtocolHTTP = "HTTP"
ProtocolHTTPS = "HTTPS"
2022-12-12 07:36:45 +00:00
2022-12-13 09:20:13 +00:00
NewApp = "new"
InstalledApp = "installed"
2022-12-12 07:36:45 +00:00
Deployment = "deployment"
Static = "static"
Proxy = "proxy"
2022-12-13 09:20:13 +00:00
SSLExisted = "existed"
SSLAuto = "auto"
SSLManual = "manual"
2022-12-14 07:26:51 +00:00
DNSAccount = "dnsAccount"
DnsManual = "dnsManual"
Http = "http"
Manual = "manual"
2022-12-12 07:36:45 +00:00
)