Comma tuning and added ipv6 example to JSON structure.

This commit is contained in:
Santeri Toikka 2016-12-03 19:36:46 +02:00
parent ad4decb0bb
commit 7510368a46

View File

@ -8,7 +8,7 @@ A simplified DNS server with a RESTful HTTP API to provide a simple way to autom
Many DNS servers do not provide an API to enable automation for the ACME DNS challenges. Those which do, give the keys way too much power. Many DNS servers do not provide an API to enable automation for the ACME DNS challenges. Those which do, give the keys way too much power.
Leaving the keys laying around your random boxes is too often a requirement to have a meaningful process automation. Leaving the keys laying around your random boxes is too often a requirement to have a meaningful process automation.
Acme-dns provides a simple API exclusively for TXT record updates and should be used with ACME magic "\_acme-challenge" - subdomain CNAME records. This way in the unfortunate exposure of API keys, the effetcs are limited to the subdomain TXT record in question. Acme-dns provides a simple API exclusively for TXT record updates and should be used with ACME magic "\_acme-challenge" - subdomain CNAME records. This way, in the unfortunate exposure of API keys, the effetcs are limited to the subdomain TXT record in question.
So basically it boils down to **accessibility** and **security** So basically it boils down to **accessibility** and **security**
@ -48,6 +48,7 @@ With the credentials, you can update the TXT response in the service to match th
"allowfrom": [ "allowfrom": [
"192.168.100.1/24", "192.168.100.1/24",
"1.2.3.4/32", "1.2.3.4/32",
"2002:c0a8:2a01::0/32",
} }
``` ```