mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 10:25:52 +02:00
11 lines
268 B
Go
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,
|
|
}
|