wildduck/config/acme.toml

26 lines
1.1 KiB
TOML
Raw Permalink Normal View History

2021-06-22 20:10:23 +08:00
# ACME production settings
key = "production" # variable to identify account settings for specified directory url
directoryUrl = "https://acme-v02.api.letsencrypt.org/directory"
email = "domainadmin@example.com" # must be valid email address
# ACME development settings
#key = "devel" # variable to identify account settings for specified directory url
#directoryUrl = "https://acme-staging-v02.api.letsencrypt.org/directory"
#email = "domainadmin@example.com" # must be valid email address
# If hostname has a CAA record set then match it against this list
# CAA check is done before WildDuck tries to request certificate from ACME
2021-06-15 15:47:18 +08:00
caaDomains = [ "letsencrypt.org" ]
2021-06-22 20:10:23 +08:00
# Private key settings, if WildDuck has to generate a key by itself
keyBits = 2048
keyExponent = 65537
2021-06-15 15:47:18 +08:00
[agent]
# If enabled then starts a HTTP server that listens for ACME verification requests
2021-06-22 20:10:23 +08:00
# If you have WildDuck API already listening on port 80 then you don't need this
enabled = false
port = 80 # use 80 in production
2021-06-21 19:28:40 +08:00
redirect = "https://wildduck.email" # redirect requests unrelated to ACME updates to this URL