Skip to content

Commit

Permalink
docs/rate-limits: Document Overall Requests Limit and style tables (#…
Browse files Browse the repository at this point in the history
…1794)

Fixes #1781
  • Loading branch information
beautifulentropy authored Dec 12, 2024
1 parent 38030f0 commit edd9e6d
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 2 deletions.
24 changes: 22 additions & 2 deletions content/en/docs/rate-limits.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Rate Limits
slug: rate-limits
date: 2018-01-04
lastmod: 2024-12-10
lastmod: 2024-12-12
show_lastmod: true
---

Expand Down Expand Up @@ -229,7 +229,6 @@ up to 50,000 additional paused hostnames associated with their account.
| 30 | 124 days (4.08 months) |
| 40 | 92 days (3.03 months) |
| 120 | 30 days |
<p></p>

### Common Causes

Expand All @@ -253,6 +252,27 @@ We do **not** offer overrides for this limit.

</div>

# Overall Requests Limit

In addition to our [account registration](#account-registration-limits) and
[certificate issuance](#certificate-issuance-limits) limits, there are
per-endpoint overall request limits that apply per-IP address. These are
enforced by our load balancers and are designed to protect the ACME API from
being overwhelmed by clients that make too many requests at once.

| Endpoint | Requests per IP (per second) | Burst Capacity |
|--------------------|------------------------------|----------------|
| /acme/new-nonce | 20 | 10 |
| /acme/new-account | 5 | 15 |
| /acme/new-order | 300 | 200 |
| /acme/revoke-cert | 10 | 100 |
| /acme/renewal-info | 1000 | 100 |
| /acme/* | 250 | 125 |
| /directory | 40 | N/A |

Subscribers who exceed these limits will receive a `503 Service Unavailable`
HTTP response code. The response will include a `Retry-After` header.

# Limit Exemptions for Renewals

Let's Encrypt recognizes a new certificate order as a "renewal" in two ways: the
Expand Down
23 changes: 23 additions & 0 deletions src/css/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,29 @@ code.language-der {
background-color: #dee;
}

table {
width: 100%;
border-collapse: collapse;
margin: $spacing-unit 0;
font-size: 16px;
color: $text-color;
border-radius: 8px;

th, td {
padding: 12px 15px;
text-align: left;
border-bottom: 1px solid $grey-color-light;
}

th {
background-color: $grey-color-dark;
color: #fff;
font-weight: 600;
text-transform: none;
letter-spacing: 0.025em;
}
}

/**
* Wrapper
*/
Expand Down

0 comments on commit edd9e6d

Please sign in to comment.