2019-06-19 17:00:06 +00:00
# TLS
Transport Layer Security
{: .subtitle }
## Certificates Definition
### Automated
See the [Let's Encrypt ](./acme.md ) page.
### User defined
2019-06-27 21:58:03 +00:00
To add / remove TLS certificates, even when Traefik is already running, their definition can be added to the [dynamic configuration ](../getting-started/configuration-overview.md ), in the `[[tls.certificates]]` section:
2019-06-19 17:00:06 +00:00
2019-07-01 09:30:05 +00:00
```toml tab="TOML"
2019-06-27 21:58:03 +00:00
[[tls.certificates]]
certFile = "/path/to/domain.cert"
keyFile = "/path/to/domain.key"
[[tls.certificates]]
certFile = "/path/to/other-domain.cert"
keyFile = "/path/to/other-domain.key"
2019-06-19 17:00:06 +00:00
```
2019-07-01 09:30:05 +00:00
```yaml tab="YAML"
tls:
certificates:
- certFile: /path/to/domain.cert
keyFile: /path/to/domain.key
- certFile: /path/to/other-domain.cert
keyFile: /path/to/other-domain.key
```
2019-06-19 17:00:06 +00:00
!!! important "File Provider Only"
In the above example, we've used the [file provider ](../providers/file.md ) to handle these definitions.
In its current alpha version, it is the only available method to configure the certificates (as well as the options and the stores).
## Certificates Stores
In Traefik, certificates are grouped together in certificates stores, which are defined as such:
2019-07-01 09:30:05 +00:00
```toml tab="TOML"
2019-06-27 21:58:03 +00:00
[tls.stores]
[tls.stores.default]
2019-06-19 17:00:06 +00:00
```
2019-07-01 09:30:05 +00:00
```yaml tab="YAML"
tls:
stores:
default: {}
```
2019-06-19 17:00:06 +00:00
!!! important "Alpha restriction"
During the alpha version, any store definition other than the default one (named `default` ) will be ignored,
and there is thefore only one globally available TLS store.
2019-07-01 09:30:05 +00:00
In the `tls.certificates` section, a list of stores can then be specified to indicate where the certificates should be stored:
2019-06-19 17:00:06 +00:00
2019-07-01 09:30:05 +00:00
```toml tab="TOML"
2019-06-27 21:58:03 +00:00
[[tls.certificates]]
certFile = "/path/to/domain.cert"
keyFile = "/path/to/domain.key"
2019-07-01 09:30:05 +00:00
stores = ["default"]
2019-06-19 17:00:06 +00:00
2019-06-27 21:58:03 +00:00
[[tls.certificates]]
2019-06-19 17:00:06 +00:00
# Note that since no store is defined,
# the certificate below will be stored in the `default` store.
2019-06-27 21:58:03 +00:00
certFile = "/path/to/other-domain.cert"
keyFile = "/path/to/other-domain.key"
2019-06-19 17:00:06 +00:00
```
2019-07-01 09:30:05 +00:00
```yaml tab="YAML"
tls:
certificates:
- certFile: /path/to/domain.cert
keyFile: /path/to/domain.key
stores:
- default
# Note that since no store is defined,
# the certificate below will be stored in the `default` store.
- certFile: /path/to/other-domain.cert
keyFile: /path/to/other-domain.key
```
2019-06-19 17:00:06 +00:00
!!! important "Alpha restriction"
During the alpha version, the `stores` list will actually be ignored and automatically set to `["default"]` .
### Default Certificate
Traefik can use a default certificate for connections without a SNI, or without a matching domain.
This default certificate should be defined in a TLS store:
2019-07-01 09:30:05 +00:00
```toml tab="TOML"
2019-06-27 21:58:03 +00:00
[tls.stores]
[tls.stores.default]
[tls.stores.default.defaultCertificate]
2019-06-19 17:00:06 +00:00
certFile = "path/to/cert.crt"
keyFile = "path/to/cert.key"
```
2019-07-01 09:30:05 +00:00
```yaml tab="YAML"
tls:
stores:
default:
defaultCertificate:
certFile: path/to/cert.crt
keyFile: path/to/cert.key
```
2019-06-19 17:00:06 +00:00
If no default certificate is provided, Traefik generates and uses a self-signed certificate.
## TLS Options
The TLS options allow one to configure some parameters of the TLS connection.
### Minimum TLS Version
2019-07-01 09:30:05 +00:00
```toml tab="TOML"
2019-06-27 21:58:03 +00:00
[tls.options]
2019-06-19 17:00:06 +00:00
2019-06-27 21:58:03 +00:00
[tls.options.default]
2019-06-19 17:00:06 +00:00
minVersion = "VersionTLS12"
2019-06-27 21:58:03 +00:00
[tls.options.mintls13]
2019-06-19 17:00:06 +00:00
minVersion = "VersionTLS13"
```
2019-07-01 09:30:05 +00:00
```yaml tab="YAML"
tls:
options:
default:
minVersion: VersionTLS12
mintls13:
minVersion: VersionTLS13
```
2019-06-19 17:00:06 +00:00
### Mutual Authentication
Traefik supports both optional and strict (which is the default) mutual authentication, though the `ClientCA.files` section.
If present, connections from clients without a certificate will be rejected.
For clients with a certificate, the `optional` option governs the behaviour as follows:
- When `optional = false` , Traefik accepts connections only from clients presenting a certificate signed by a CA listed in `ClientCA.files` .
- When `optional = true` , Traefik authorizes connections from clients presenting a certificate signed by an unknown CA.
2019-07-01 09:30:05 +00:00
```toml tab="TOML"
2019-06-27 21:58:03 +00:00
[tls.options]
[tls.options.default]
2019-07-01 09:30:05 +00:00
[tls.options.default.clientCA]
2019-06-19 17:00:06 +00:00
# in PEM format. each file can contain multiple CAs.
files = ["tests/clientca1.crt", "tests/clientca2.crt"]
optional = false
```
2019-07-01 09:30:05 +00:00
```yaml tab="YAML"
tls:
options:
default:
clientCA:
# in PEM format. each file can contain multiple CAs.
files:
- tests/clientca1.crt
- tests/clientca2.crt
optional: false
```
2019-06-19 17:00:06 +00:00
### Cipher Suites
See [cipherSuites ](https://godoc.org/crypto/tls#pkg-constants ) for more information.
2019-07-01 09:30:05 +00:00
```toml tab="TOML"
2019-06-27 21:58:03 +00:00
[tls.options]
[tls.options.default]
2019-06-19 17:00:06 +00:00
cipherSuites = [
"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
"TLS_RSA_WITH_AES_256_GCM_SHA384"
]
```
2019-07-01 09:30:05 +00:00
```yaml tab="YAML"
tls:
options:
default:
cipherSuites:
- TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
- TLS_RSA_WITH_AES_256_GCM_SHA384
```
2019-06-19 17:00:06 +00:00
### Strict SNI Checking
With strict SNI checking, Traefik won't allow connections from clients connections
that do not specify a server_name extension.
2019-07-01 09:30:05 +00:00
```toml tab="TOML"
2019-06-27 21:58:03 +00:00
[tls.options]
[tls.options.default]
2019-06-19 17:00:06 +00:00
sniStrict = true
```
2019-07-01 09:30:05 +00:00
```yaml tab="YAML"
tls:
options:
default:
sniStrict: true
```