From fc80e534fa218f5a16ba3ca30d01258c6c7daf2e Mon Sep 17 00:00:00 2001 From: DarinDev1000 <43659317+DarinDev1000@users.noreply.github.com> Date: Thu, 12 Jun 2025 03:05:46 +0000 Subject: [PATCH] AWS Route53 autocert example --- config.example.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/config.example.yml b/config.example.yml index a7aefba..d0289a8 100644 --- a/config.example.yml +++ b/config.example.yml @@ -15,7 +15,20 @@ # options: # auth_token: c1234565789-abcdefghijklmnopqrst # your zone API token -# 3. other providers, see https://github.com/yusing/godoxy/wiki/Supported-DNS%E2%80%9001-Providers#supported-dns-01-providers +# 3. AWS Route53 +# autocert: +# provider: route53 +# email: abc@gmail.com # ACME Email +# domains: # a list of domains for cert registration +# - "*.domain.com" +# - "domain.com" +# options: +# accesskeyid: your_key_id # AWS User Access key id on a user with Route53 permissions +# secretaccesskey: your_secret_access_key # AWS User Access key secret on a user with Route53 permissions +# region: us-east-1 # us-east-1 for most of the world +# hostedzoneid: your_hosted_zone_id # The Hosted Zone ID of your domain in AWS Route53 + +# 4. other providers, see https://github.com/yusing/godoxy/wiki/Supported-DNS%E2%80%9001-Providers#supported-dns-01-providers # acl: # default: allow # or deny (default: allow)