docs: fix description for anonymous usage statistics references
This commit is contained in:
parent
6df9578ace
commit
74ab88d47e
3 changed files with 3 additions and 3 deletions
|
@ -217,7 +217,7 @@ plugin's version.
|
||||||
Periodically check if a new version has been released. (Default: ```true```)
|
Periodically check if a new version has been released. (Default: ```true```)
|
||||||
|
|
||||||
`--global.sendanonymoususage`:
|
`--global.sendanonymoususage`:
|
||||||
Periodically send anonymous usage statistics. If the option is not specified, it will be enabled by default. (Default: ```false```)
|
Periodically send anonymous usage statistics. If the option is not specified, it will be disabled by default. (Default: ```false```)
|
||||||
|
|
||||||
`--hostresolver`:
|
`--hostresolver`:
|
||||||
Enable CNAME Flattening. (Default: ```false```)
|
Enable CNAME Flattening. (Default: ```false```)
|
||||||
|
|
|
@ -217,7 +217,7 @@ plugin's version.
|
||||||
Periodically check if a new version has been released. (Default: ```true```)
|
Periodically check if a new version has been released. (Default: ```true```)
|
||||||
|
|
||||||
`TRAEFIK_GLOBAL_SENDANONYMOUSUSAGE`:
|
`TRAEFIK_GLOBAL_SENDANONYMOUSUSAGE`:
|
||||||
Periodically send anonymous usage statistics. If the option is not specified, it will be enabled by default. (Default: ```false```)
|
Periodically send anonymous usage statistics. If the option is not specified, it will be disabled by default. (Default: ```false```)
|
||||||
|
|
||||||
`TRAEFIK_HOSTRESOLVER`:
|
`TRAEFIK_HOSTRESOLVER`:
|
||||||
Enable CNAME Flattening. (Default: ```false```)
|
Enable CNAME Flattening. (Default: ```false```)
|
||||||
|
|
|
@ -91,7 +91,7 @@ type CertificateResolver struct {
|
||||||
// Global holds the global configuration.
|
// Global holds the global configuration.
|
||||||
type Global 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" file:"allowEmpty" export:"true"`
|
CheckNewVersion bool `description:"Periodically check if a new version has been released." json:"checkNewVersion,omitempty" toml:"checkNewVersion,omitempty" yaml:"checkNewVersion,omitempty" label:"allowEmpty" file:"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" file:"allowEmpty" export:"true"`
|
SendAnonymousUsage bool `description:"Periodically send anonymous usage statistics. If the option is not specified, it will be disabled by default." json:"sendAnonymousUsage,omitempty" toml:"sendAnonymousUsage,omitempty" yaml:"sendAnonymousUsage,omitempty" label:"allowEmpty" file:"allowEmpty" export:"true"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ServersTransport options to configure communication between Traefik and the servers.
|
// ServersTransport options to configure communication between Traefik and the servers.
|
||||||
|
|
Loading…
Reference in a new issue