acme-dns-01-cli.js/README.md

76 lines
2.1 KiB
Markdown
Raw Permalink Normal View History

2016-09-07 20:58:25 +00:00
[![Join the chat at https://gitter.im/Daplie/letsencrypt-express](https://badges.gitter.im/Daplie/letsencrypt-express.svg)](https://gitter.im/Daplie/letsencrypt-express?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
| [letsencrypt](https://github.com/Daplie/node-letsencrypt) (library)
| [letsencrypt-cli](https://github.com/Daplie/letsencrypt-cli)
| [letsencrypt-express](https://github.com/Daplie/letsencrypt-express)
| [letsencrypt-koa](https://github.com/Daplie/letsencrypt-koa)
| [letsencrypt-hapi](https://github.com/Daplie/letsencrypt-hapi)
|
2016-10-14 18:32:46 +00:00
le-challenge-ddns
2016-08-12 06:17:01 +00:00
================
2016-09-07 20:58:25 +00:00
A dns-based strategy for node-letsencrypt for setting, retrieving,
and clearing ACME DNS-01 challenges issued by the ACME server
2016-08-12 06:17:01 +00:00
2016-10-14 19:17:44 +00:00
It creates a subdomain record for `_acme-challenge` with `keyAuthDigest`
2016-09-07 20:58:25 +00:00
to be tested by the ACME server.
```
_acme-challenge.example.com TXT xxxxxxxxxxxxxxxx TTL 60
```
2016-08-12 06:17:01 +00:00
2016-09-07 20:58:25 +00:00
* Safe to use with node cluster
* Safe to use with ephemeral services (Heroku, Joyent, etc)
Install
-------
```bash
2016-10-14 18:32:46 +00:00
npm install --save le-challenge-ddns@2.x
2016-09-07 20:58:25 +00:00
```
2016-08-12 06:17:01 +00:00
Usage
-----
```bash
2016-10-14 18:32:46 +00:00
var leChallengeDdns = require('le-challenge-ddns').create({
2016-09-07 20:58:25 +00:00
email: 'john.doe@example.com'
, refreshToken: '...'
, ttl: 60
2016-08-12 06:17:01 +00:00
, debug: false
});
var LE = require('letsencrypt');
LE.create({
server: LE.stagingServerUrl // Change to LE.productionServerUrl in production
2016-09-07 20:58:25 +00:00
, challengeType: 'dns-01'
, challenges: {
2016-10-14 18:32:46 +00:00
'dns-01': leChallengeDdns
2016-09-07 20:58:25 +00:00
}
, approvedDomains: [ 'example.com' ]
2016-08-12 06:17:01 +00:00
});
```
NOTE: If you request a certificate with 6 domains listed,
it will require 6 individual challenges.
Exposed Methods
---------------
For ACME Challenge:
2016-09-07 20:58:25 +00:00
* `set(opts, domain, challange, keyAuthorization, done)`
* `get(defaults, domain, challenge, done)`
* `remove(defaults, domain, challenge, done)`
2016-10-14 18:34:18 +00:00
Note: `get()` is a no-op for `dns-01`.
2016-08-12 06:17:01 +00:00
For node-letsencrypt internals:
* `getOptions()` returns the internal defaults merged with the user-supplied options
2016-10-14 18:35:26 +00:00
* `loopback(defaults, domain, challange, done)` performs a dns lookup of the txt record
2016-09-07 20:58:25 +00:00
* `test(opts, domain, challange, keyAuthorization, done)` runs set, loopback, remove, loopback