Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs/rate-limits: Document Overall Requests Limit and style tables #1794

Merged
merged 3 commits into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 | Burst Capacity
|--------------------|------------------|-----------------|
beautifulentropy marked this conversation as resolved.
Show resolved Hide resolved
beautifulentropy marked this conversation as resolved.
Show resolved Hide resolved
| /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
Loading