mirror of
				https://github.com/1Panel-dev/1Panel.git
				synced 2025-10-31 11:15:58 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			514 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			514 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package constant
 | |
| 
 | |
| const (
 | |
| 	WebRunning = "Running"
 | |
| 	WebStopped = "Stopped"
 | |
| 
 | |
| 	DateLayout  = "2006-01-02"
 | |
| 	DefaultDate = "1970-01-01"
 | |
| 
 | |
| 	ProtocolHTTP  = "HTTP"
 | |
| 	ProtocolHTTPS = "HTTPS"
 | |
| 
 | |
| 	NewApp       = "new"
 | |
| 	InstalledApp = "installed"
 | |
| 
 | |
| 	Deployment = "deployment"
 | |
| 	Static     = "static"
 | |
| 	Proxy      = "proxy"
 | |
| 
 | |
| 	SSLExisted = "existed"
 | |
| 	SSLAuto    = "auto"
 | |
| 	SSLManual  = "manual"
 | |
| 
 | |
| 	DNSAccount = "dnsAccount"
 | |
| 	DnsManual  = "dnsManual"
 | |
| 	Http       = "http"
 | |
| 	Manual     = "manual"
 | |
| 
 | |
| 	StartWeb = "start"
 | |
| 	StopWeb  = "stop"
 | |
| )
 |