mirror of
				https://github.com/1Panel-dev/1Panel.git
				synced 2025-10-31 19:26:02 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			376 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			376 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package response
 | |
| 
 | |
| type NginxStatus struct {
 | |
| 	Active   string `json:"active"`
 | |
| 	Accepts  string `json:"accepts"`
 | |
| 	Handled  string `json:"handled"`
 | |
| 	Requests string `json:"requests"`
 | |
| 	Reading  string `json:"reading"`
 | |
| 	Writing  string `json:"writing"`
 | |
| 	Waiting  string `json:"waiting"`
 | |
| }
 | |
| 
 | |
| type NginxParam struct {
 | |
| 	Name   string   `json:"name"`
 | |
| 	Params []string `json:"params"`
 | |
| }
 |