diff --git a/docs/content/https/acme.md b/docs/content/https/acme.md index c4eafafd8..62509b32c 100644 --- a/docs/content/https/acme.md +++ b/docs/content/https/acme.md @@ -606,9 +606,21 @@ docker run -v "/my/host/acme:/etc/traefik/acme" traefik _Optional, Default=2160_ -The `certificatesDuration` option defines the certificates' duration in hours. +`certificatesDuration` is used to calculate two durations: + +- `Renew Period`: the period before the end of the certificate duration, during which the certificate should be renewed. +- `Renew Interval`: the interval between renew attempts. + It defaults to `2160` (90 days) to follow Let's Encrypt certificates' duration. +| Certificate Duration | Renew Period | Renew Interval | +|----------------------|-------------------|-------------------------| +| >= 1 year | 4 months | 1 week | +| >= 90 days | 30 days | 1 day | +| >= 7 days | 1 day | 1 hour | +| >= 24 hours | 6 hours | 10 min | +| < 24 hours | 20 min | 1 min | + !!! warning "Traefik cannot manage certificates with a duration lower than 1 hour." ```yaml tab="File (YAML)" @@ -633,19 +645,6 @@ certificatesResolvers: # ... ``` -`certificatesDuration` is used to calculate two durations: - -- `Renew Period`: the period before the end of the certificate duration, during which the certificate should be renewed. -- `Renew Interval`: the interval between renew attempts. - -| Certificate Duration | Renew Period | Renew Interval | -|----------------------|-------------------|-------------------------| -| >= 1 year | 4 months | 1 week | -| >= 90 days | 30 days | 1 day | -| >= 7 days | 1 day | 1 hour | -| >= 24 hours | 6 hours | 10 min | -| < 24 hours | 20 min | 1 min | - ### `preferredChain` _Optional, Default=""_