mirror of
https://github.com/traefik/traefik
synced 2026-02-12 13:18:09 +00:00
9 lines
400 B
Go
9 lines
400 B
Go
package types
|
|
|
|
// HostResolverConfig contain configuration for CNAME Flattening.
|
|
type HostResolverConfig struct {
|
|
CnameFlattening bool `description:"A flag to enable/disable CNAME flattening" export:"true"`
|
|
ResolvConfig string `description:"resolv.conf used for DNS resolving" export:"true"`
|
|
ResolvDepth int `description:"The maximal depth of DNS recursive resolving" export:"true"`
|
|
}
|