-
-
Notifications
You must be signed in to change notification settings - Fork 611
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
113 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,6 +46,9 @@ | |
] | ||
} | ||
} | ||
}, | ||
"features": { | ||
"UseKvLimitsForNewOrder": true | ||
} | ||
}, | ||
"syslog": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
NewRegistrationsPerIPAddress: | ||
count: 10000 | ||
burst: 10000 | ||
period: 168h | ||
NewRegistrationsPerIPv6Range: | ||
count: 99999 | ||
burst: 99999 | ||
period: 168h | ||
CertificatesPerDomain: | ||
count: 2 | ||
burst: 2 | ||
period: 2160h | ||
FailedAuthorizationsPerDomainPerAccount: | ||
count: 3 | ||
burst: 3 | ||
period: 5m | ||
# The burst represents failing 40 times per day for 90 days. The count and | ||
# period grant one "freebie" failure per day. In combination, these parameters | ||
# mean that: | ||
# - Failing 120 times per day results in being paused after 30.25 days | ||
# - Failing 40 times per day results in being paused after 92.3 days | ||
# - Failing 20 times per day results in being paused after 6.2 months | ||
# - Failing 4 times per day results in being paused after 3.3 years | ||
# - Failing once per day results in never being paused | ||
FailedAuthorizationsForPausingPerDomainPerAccount: | ||
count: 1 | ||
burst: 3600 | ||
period: 24h | ||
NewOrdersPerAccount: | ||
count: 1500 | ||
burst: 1500 | ||
period: 3h | ||
CertificatesPerFQDNSet: | ||
count: 2 | ||
burst: 2 | ||
period: 3h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
- NewRegistrationsPerIPAddress: | ||
burst: 1000000 | ||
count: 1000000 | ||
period: 168h | ||
ids: | ||
- id: 127.0.0.1 | ||
comment: localhost | ||
- id: 10.77.77.77 | ||
comment: test | ||
- id: 10.88.88.88 | ||
comment: test | ||
- CertificatesPerDomain: | ||
burst: 1 | ||
count: 1 | ||
period: 2160h | ||
ids: | ||
- id: ratelimit.me | ||
comment: Rate Limit Test Domain | ||
- CertificatesPerDomain: | ||
burst: 10000 | ||
count: 10000 | ||
period: 2160h | ||
ids: | ||
- id: le.wtf | ||
comment: Let's Encrypt Test Domain | ||
- id: le1.wtf | ||
comment: Let's Encrypt Test Domain 1 | ||
- id: le2.wtf | ||
comment: Let's Encrypt Test Domain 2 | ||
- id: le3.wtf | ||
comment: Let's Encrypt Test Domain 3 | ||
- id: nginx.wtf | ||
comment: Nginx Test Domain | ||
- id: good-caa-reserved.com | ||
comment: Good CAA Reserved Domain | ||
- id: bad-caa-reserved.com | ||
comment: Bad CAA Reserved Domain | ||
- id: ecdsa.le.wtf | ||
comment: ECDSA Let's Encrypt Test Domain | ||
- id: must-staple.le.wtf | ||
comment: Must-Staple Let's Encrypt Test Domain | ||
- CertificatesPerFQDNSet: | ||
burst: 10000 | ||
count: 10000 | ||
period: 168h | ||
ids: | ||
- id: le.wtf | ||
comment: Let's Encrypt Test Domain | ||
- id: le1.wtf | ||
comment: Let's Encrypt Test Domain 1 | ||
- id: le2.wtf | ||
comment: Let's Encrypt Test Domain 2 | ||
- id: le3.wtf | ||
comment: Let's Encrypt Test Domain 3 | ||
- id: le.wtf,le1.wtf | ||
comment: Let's Encrypt Test Domain, Let's Encrypt Test Domain 1 | ||
- id: good-caa-reserved.com | ||
comment: Good CAA Reserved Domain | ||
- id: nginx.wtf | ||
comment: Nginx Test Domain | ||
- id: ecdsa.le.wtf | ||
comment: ECDSA Let's Encrypt Test Domain | ||
- id: must-staple.le.wtf | ||
comment: Must-Staple Let's Encrypt Test Domain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters