nginx_ui/nginx-ui-dev/settings/http.go
2025-03-04 11:28:12 +00:00

9 lines
214 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{}