mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-10 18:05:48 +02:00
8 lines
214 B
Go
8 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{}
|