mirror of
https://github.com/nodemailer/wildduck.git
synced 2024-12-26 09:50:47 +08:00
25 lines
1.1 KiB
TOML
25 lines
1.1 KiB
TOML
|
|
# 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
|
|
caaDomains = [ "letsencrypt.org" ]
|
|
|
|
# Private key settings, if WildDuck has to generate a key by itself
|
|
keyBits = 2048
|
|
keyExponent = 65537
|
|
|
|
[agent]
|
|
# If enabled then starts a HTTP server that listens for ACME verification requests
|
|
# If you have WildDuck API already listening on port 80 then you don't need this
|
|
enabled = false
|
|
port = 80 # use 80 in production
|
|
redirect = "https://wildduck.email" # redirect requests unrelated to ACME updates to this URL
|