nginx_ui/nginx-ui-dev/settings/http.go

9 lines
214 B
Go
Raw Permalink Normal View History

2025-03-04 19:28:12 +08:00
package settings
type HTTP struct {
GithubProxy string `json:"github_proxy" binding:"omitempty,url"`
InsecureSkipVerify bool `json:"insecure_skip_verify" protected:"true"`
}
var HTTPSettings = &HTTP{}