mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
9 lines
261 B
Go
9 lines
261 B
Go
|
package schema
|
||
|
|
||
|
// TLSConfig is a representation of the TLS configuration.
|
||
|
type TLSConfig struct {
|
||
|
MinimumVersion string `mapstructure:"minimum_version"`
|
||
|
SkipVerify bool `mapstructure:"skip_verify"`
|
||
|
ServerName string `mapstructure:"server_name"`
|
||
|
}
|