]> git.proxmox.com Git - mirror_acme.sh.git/commitdiff
Updated DNS API support list.
authorRaidenII <raidenii@users.noreply.github.com>
Sun, 2 Jul 2017 11:55:06 +0000 (04:55 -0700)
committerRaidenII <raidenii@users.noreply.github.com>
Sun, 2 Jul 2017 11:55:06 +0000 (04:55 -0700)
README.md
dnsapi/README.md

index 5b6b03aeb7be31a064621ccb20f25deef8b7dbae..7780b9abbf05d16d546606cc3d3c7a887259fe3c 100644 (file)
--- a/README.md
+++ b/README.md
@@ -334,7 +334,8 @@ You don't have to do anything manually!
 1. Dynu API (https://www.dynu.com)
 1. DNSimple API
 1. NS1.com API
-
+1. DuckDNS.org API
+1. Name.com API
 
 
 And: 
index 5dca829a4c674375318d0cddb8bb037681ad3b20..7584b31e5dbc13af589b805c0a639e6ccbfc7904 100644 (file)
@@ -505,6 +505,37 @@ Ok, let's issue a cert now:
 acme.sh --issue --dns dns_nsone -d example.com -d www.example.com
 ```
 
+## 27. Use DuckDNS.org API
+
+```
+export DuckDNS_Token="aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee"
+```
+
+Please note that since DuckDNS uses StartSSL as their cert provider, thus 
+--insecure must be used when issuing certs:
+```
+acme.sh --insecure --issue --dns dns_duckdns -d mydomain.duckdns.org
+```
+
+Also, DuckDNS uses the domain name as username for recording changing, so the
+account file will always store the lastly used domain name.
+
+For issues, please report to https://github.com/raidenii/acme.sh/issues.
+
+## 28. Use Name.com API
+
+```
+export Namecom_Username="testuser"
+export Namecom_Token="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
+```
+
+And now you can issue certs with:
+```
+acme.sh --issue --dns dns_namecom -d example.com -d www.example.com
+```
+
+For issues, please report to https://github.com/raidenii/acme.sh/issues.
+
 # Use custom API
 
 If your API is not supported yet, you can write your own DNS API.