forked from breard-r/acmed
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request breard-r#48 from rzerres/wip-toml
Update toml files
- Loading branch information
Showing
3 changed files
with
12 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
# ------------------------------------------------------------------------ | ||
# Base configruation for ACMEd | ||
# You should adapt this file to include/enhance with your custom toml's | ||
# ------------------------------------------------------------------------ | ||
|
||
include = [ | ||
"default_hooks.toml", | ||
"letsencrypt.toml", | ||
"my_server.toml" | ||
] |
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
[[rate-limit]] | ||
name = "LE min" | ||
name = "Let's Encrypt rate-limit" | ||
number = 20 | ||
period = "1s" | ||
|
||
[[endpoint]] | ||
name = "letsencrypt v2 prod" | ||
name = "Let's Encrypt v2 production" | ||
url = "https://acme-v02.api.letsencrypt.org/directory" | ||
rate_limits = ["LE min"] | ||
rate_limits = ["Let's Encrypt rate-limit"] | ||
tos_agreed = false | ||
|
||
[[endpoint]] | ||
name = "letsencrypt v2 staging" | ||
name = "Let's Encrypt v2 staging" | ||
url = "https://acme-staging-v02.api.letsencrypt.org/directory" | ||
rate_limits = ["LE min"] | ||
rate_limits = ["Let's Encrypt rate-limit"] | ||
tos_agreed = false |