mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
540 B
24 lines
540 B
package response
|
|
|
|
import "github.com/1Panel-dev/1Panel/backend/app/dto"
|
|
|
|
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"`
|
|
}
|
|
|
|
type NginxAuthRes struct {
|
|
Enable bool `json:"enable"`
|
|
Items []dto.NginxAuth `json:"items"`
|
|
}
|