mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-12 02:17:43 +08:00
e9510da434
* Added basic structure for domain name shop * Finished proof of concept for domainnameshop * Fixed handeling of IDNA for CNAME records * Updated documentation notes * Added docs * Ran linter and vet * Removed proxy config used for debugging * Ran go generate * Fixed issue with TTLs being restricted to a multiple of 60 * Ran tests, vet and linting and fixed flaws * Fixed typo in docs * Improved code based on feedback * Fixed issues with TXT records not working properly * Refactored according to new file layout proposed * Updated documentation matrix * Suggestions and corrections * Corrected according to suggestions Co-authored-by: Simen Bai <git@simenbai.no> Co-authored-by: Tom Limoncelli <tlimoncelli@stackoverflow.com>
1,012 B
1,012 B
name | title | layout | jsId |
---|---|---|---|
DomainNameShop | DomainNameShop Provider | default | DOMAINNAMESHOP |
DOMAINNAMESHOP Provider
Configuration
To use this provider, add an entry to creds.json
with TYPE
set to DOMAINNAMESHOP
along with your DomainNameShop Token and Secret.
Example:
{
"mydomainnameshop": {
"TYPE": "DOMAINNAMESHOP",
"token": "your-domainnameshop-token",
"secret": "your-domainnameshop-secret"
}
}
Metadata
This provider does not recognize any special metadata fields unique to DomainNameShop.
Usage
An example dnsconfig.js
configuration:
var REG_NONE = NewRegistrar("none");
var DSP_DOMAINNAMESHOP = NewDnsProvider("mydomainnameshop");
D("example.tld", REG_NONE, DnsProvider(DSP_DOMAINNAMESHOP),
A("test", "1.2.3.4")
);
Activation
Limitations
- DomainNameShop DNS only supports TTLs which are a multiple of 60.