Traefik & HTTP
Provide your dynamic configuration via an HTTP(S) endpoint and let Traefik do the rest!
Routing Configuration
The HTTP provider uses the same configuration as the File Provider in YAML or JSON format.
Provider Configuration
endpoint
Required
Defines the HTTP(S) endpoint to poll.
File (YAML)
providers:
http:
endpoint: "http://127.0.0.1:9000/api"
File (TOML)
[providers.http]
endpoint = "http://127.0.0.1:9000/api"
CLI
--providers.http.endpoint=http://127.0.0.1:9000/api
pollInterval
Optional, Default=”5s”
Defines the polling interval.
File (YAML)
providers:
http:
pollInterval: "5s"
File (TOML)
[providers.http]
pollInterval = "5s"
CLI
--providers.http.pollInterval=5s
pollTimeout
Optional, Default=”5s”
Defines the polling timeout when connecting to the endpoint.
File (YAML)
providers:
http:
pollTimeout: "5s"
File (TOML)
[providers.http]
pollTimeout = "5s"
CLI
--providers.http.pollTimeout=5s
headers
Optional
Defines custom headers to be sent to the endpoint.
File (YAML)
providers:
http:
headers:
name: value
File (TOML)
[providers.http.headers]
name = "value"
CLI
--providers.http.headers.name=value
tls
Optional
Defines the TLS configuration used for the secure connection to the endpoint.
ca
Optional
ca
is the path to the certificate authority used for the secure connection to the endpoint, it defaults to the system bundle.
File (YAML)
providers:
http:
tls:
ca: path/to/ca.crt
File (TOML)
[providers.http.tls]
ca = "path/to/ca.crt"
CLI
--providers.http.tls.ca=path/to/ca.crt
cert
Optional
cert
is the path to the public certificate used for the secure connection to the endpoint. When using this option, setting the key
option is required.
File (YAML)
providers:
http:
tls:
cert: path/to/foo.cert
key: path/to/foo.key
File (TOML)
[providers.http.tls]
cert = "path/to/foo.cert"
key = "path/to/foo.key"
CLI
--providers.http.tls.cert=path/to/foo.cert
--providers.http.tls.key=path/to/foo.key
key
Optional
key
is the path to the private key used for the secure connection to the endpoint. When using this option, setting the cert
option is required.
File (YAML)
providers:
http:
tls:
cert: path/to/foo.cert
key: path/to/foo.key
File (TOML)
[providers.http.tls]
cert = "path/to/foo.cert"
key = "path/to/foo.key"
CLI
--providers.http.tls.cert=path/to/foo.cert
--providers.http.tls.key=path/to/foo.key
insecureSkipVerify
Optional, Default=false
If insecureSkipVerify
is true
, the TLS connection to the endpoint accepts any certificate presented by the server regardless of the hostnames it covers.
File (YAML)
providers:
http:
tls:
insecureSkipVerify: true
File (TOML)
[providers.http.tls]
insecureSkipVerify = true
CLI
--providers.http.tls.insecureSkipVerify=true