Skip to content
Snippets Groups Projects

Add additional TLS config option: InsecureSkipVerify

Merged Malte Bauch requested to merge set-insecure-skip-verify-option-for-tls-through-config into master
2 files
+ 9
7
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 5
4
@@ -31,10 +31,11 @@ type Peer struct {
}
type TLSConfig struct {
Active bool `yaml:"Active"`
CAFile string `yaml:"CAFile"`
CertFile string `yaml:"CertFile"`
KeyFile string `yaml:"KeyFile"`
Active bool `yaml:"Active"`
InsecureSkipVerify bool `yaml:"InsecureSkipVerify"`
CAFile string `yaml:"CAFile"`
CertFile string `yaml:"CertFile"`
KeyFile string `yaml:"KeyFile"`
}
type QuantumModule struct {
Loading