mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2026-05-06 14:03:40 +08:00
9 lines
214 B
Go
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{}
|