nginx-ui/settings/http.go
2024-10-22 16:38:38 +08:00

11 lines
268 B
Go

package settings
type HTTP struct {
GithubProxy string `json:"github_proxy" binding:"omitempty,url"`
InsecureSkipVerify bool `json:"insecure_skip_verify" protected:"true"`
}
var HTTPSettings = &HTTP{
GithubProxy: "",
InsecureSkipVerify: false,
}