mirror of
https://git.coolaj86.com/coolaj86/acme-dns-01-dnsimple.js.git
synced 2025-08-01 18:16:31 +00:00
Compare commits
No commits in common. "master" and "v3.0.0" have entirely different histories.
@ -8,7 +8,7 @@ Handles ACME dns-01 challenges. Compatible with ACME.js and Greenlock.js. Passes
|
|||||||
|
|
||||||
- Compatible
|
- Compatible
|
||||||
- Let’s Encrypt v2.1 / ACME draft 18 (2019)
|
- Let’s Encrypt v2.1 / ACME draft 18 (2019)
|
||||||
- DNSimple v2 API
|
- DNSimple API
|
||||||
- ACME.js, Greenlock.js, and others
|
- ACME.js, Greenlock.js, and others
|
||||||
- Quality
|
- Quality
|
||||||
- node v6 compatible VanillaJS
|
- node v6 compatible VanillaJS
|
||||||
@ -32,8 +32,7 @@ First you create an instance with your credentials:
|
|||||||
|
|
||||||
```js
|
```js
|
||||||
var dns01 = require('acme-dns-01-dnsimple').create({
|
var dns01 = require('acme-dns-01-dnsimple').create({
|
||||||
baseUrl: 'https://api.dnsimple.com/v2/', // default
|
baseUrl: '{{ api url }}', // default
|
||||||
account: 'johndoe',
|
|
||||||
token: 'xxxx'
|
token: 'xxxx'
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
@ -94,7 +93,7 @@ See acme-dns-01-test for more implementation details.
|
|||||||
# Tests
|
# Tests
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# node ./test.js domain-zone account token
|
# node ./test.js domain-zone username password
|
||||||
node ./test.js example.com johndoe xxxxxx
|
node ./test.js example.com johndoe xxxxxx
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
ZONE=example.co.uk
|
ZONE=example.co.uk
|
||||||
ACCOUNT=johndoe
|
USERNAME=johndoe
|
||||||
TOKEN=xxxxxxxx
|
PASSWORD=xxxxxxxx
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "acme-dns-01-dnsimple",
|
"name": "acme-dns-01-dnsimple",
|
||||||
"version": "3.0.1",
|
"version": "3.0.0",
|
||||||
"description": "DNSimple + Let's Encrypt for Node.js - ACME dns-01 challenges w/ ACME.js and Greenlock.js",
|
"description": "DNSimple + Let's Encrypt for Node.js - ACME dns-01 challenges w/ ACME.js and Greenlock.js",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"files": [
|
"files": [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user