2022-12-09 17:16:07 +08:00
|
|
|
package request
|
|
|
|
|
2022-12-13 18:54:46 +08:00
|
|
|
import "github.com/1Panel-dev/1Panel/backend/app/dto"
|
|
|
|
|
2022-12-09 17:16:07 +08:00
|
|
|
type NginxConfigFileUpdate struct {
|
|
|
|
Content string `json:"content" validate:"required"`
|
|
|
|
FilePath string `json:"filePath" validate:"required"`
|
|
|
|
Backup bool `json:"backup" validate:"required"`
|
|
|
|
}
|
2022-12-13 18:54:46 +08:00
|
|
|
|
|
|
|
type NginxScopeReq struct {
|
|
|
|
Scope dto.NginxKey `json:"scope" validate:"required"`
|
|
|
|
WebsiteID uint `json:"websiteId"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type NginxConfigUpdate struct {
|
|
|
|
Scope dto.NginxKey `json:"scope"`
|
|
|
|
Operate string `json:"operate" validate:"required;oneof=add update delete"`
|
|
|
|
WebsiteID uint `json:"websiteId" validate:"required"`
|
|
|
|
Params interface{} `json:"params"`
|
|
|
|
}
|