tls.md (traefik-v2.3.2.src) | : | tls.md (traefik-v2.3.3.src) | ||
---|---|---|---|---|
skipping to change at line 67 | skipping to change at line 67 | |||
# Dynamic configuration | # Dynamic configuration | |||
tls: | tls: | |||
stores: | stores: | |||
default: {} | default: {} | |||
``` | ``` | |||
!!! important "Restriction" | !!! important "Restriction" | |||
Any store definition other than the default one (named `default`) will be ig nored, | Any store definition other than the default one (named `default`) will be ig nored, | |||
and there is thefore only one globally available TLS store. | and there is therefore only one globally available TLS store. | |||
In the `tls.certificates` section, a list of stores can then be specified to ind icate where the certificates should be stored: | In the `tls.certificates` section, a list of stores can then be specified to ind icate where the certificates should be stored: | |||
```toml tab="File (TOML)" | ```toml tab="File (TOML)" | |||
# Dynamic configuration | # Dynamic configuration | |||
[[tls.certificates]] | [[tls.certificates]] | |||
certFile = "/path/to/domain.cert" | certFile = "/path/to/domain.cert" | |||
keyFile = "/path/to/domain.key" | keyFile = "/path/to/domain.key" | |||
stores = ["default"] | stores = ["default"] | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |