Fix default value for InsecureSNI when global is not set

This commit is contained in:
Julien Salleyron 2020-07-13 12:06:03 +02:00 committed by GitHub
parent 06dcf8d8aa
commit 143e9b6f9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -20,6 +20,7 @@ func NewTraefikConfiguration() *TraefikCmdConfiguration {
Configuration: static.Configuration{
Global: &static.Global{
CheckNewVersion: true,
InsecureSNI: true,
},
EntryPoints: make(static.EntryPoints),
Providers: &static.Providers{

View file

@ -79,7 +79,7 @@ type CertificateResolver struct {
type Global struct {
CheckNewVersion bool `description:"Periodically check if a new version has been released." json:"checkNewVersion,omitempty" toml:"checkNewVersion,omitempty" yaml:"checkNewVersion,omitempty" label:"allowEmpty" export:"true"`
SendAnonymousUsage bool `description:"Periodically send anonymous usage statistics. If the option is not specified, it will be enabled by default." json:"sendAnonymousUsage,omitempty" toml:"sendAnonymousUsage,omitempty" yaml:"sendAnonymousUsage,omitempty" label:"allowEmpty" export:"true"`
InsecureSNI bool `description:"Allow domain fronting. If the option is not specified, it will be enabled by default." json:"insecureSNI,omitempty" toml:"insecureSNI,omitempty" yaml:"insecureSNI,omitempty" label:"allowEmpty" export:"true"`
InsecureSNI bool `description:"Allow domain fronting. If the option is not specified, it will be enabled by default." json:"insecureSNI" toml:"insecureSNI" yaml:"insecureSNI" label:"allowEmpty" export:"true"`
}
// SetDefaults sets the default values.