acme.js/README.md

235 regels
7.5 KiB
Markdown

# [acme.js](https://git.coolaj86.com/coolaj86/acme.js)
2018-05-23 04:53:45 +00:00
2018-05-23 05:14:29 +00:00
Free SSL for everybody. The bare essentials of the Let's Encrypt v2 (ACME) API.
2018-05-23 05:03:32 +00:00
Built for [Greenlock](https://git.coolaj86.com/coolaj86/greenlock-express.js),
[by request](https://git.coolaj86.com/coolaj86/greenlock.js/issues/5#issuecomment-8).
2018-05-23 04:53:45 +00:00
| A [Root](https://therootcompany.com) Project |
2018-05-23 04:53:45 +00:00
!["Monthly Downloads"](https://img.shields.io/npm/dm/acme-v2.svg "Monthly Download Count can't be shown")
!["Weekly Downloads"](https://img.shields.io/npm/dw/acme-v2.svg "Weekly Download Count can't be shown")
2018-04-16 01:04:06 +00:00
# Looking for Quick 'n' Easy™?
2018-04-16 01:04:06 +00:00
2018-05-23 05:14:29 +00:00
This is intented for building ACME API clients in node.js. It is **not** a high-level, fully-integrated solution.
2018-05-23 04:53:45 +00:00
2018-05-23 05:09:20 +00:00
You may be more interested in one of these:
2018-05-23 04:53:45 +00:00
2018-05-23 05:14:29 +00:00
* <https://greenlock.domains> Instant SSL Certificates in your Browser
2018-05-23 05:09:20 +00:00
* [Greenlock for Web Browsers](https://git.coolaj86.com/coolaj86/greenlock.html) (Browser JavaScript)
* [Greenlock for Web Servers](https://git.coolaj86.com/coolaj86/greenlock-cli.js) (Command line, like certbot)
* [Greenlock for Express.js](https://git.coolaj86.com/coolaj86/greenlock-express.js) (Automated HTTPS for Express.js apps)
* [Greenlock for node.js](https://git.coolaj86.com/coolaj86/greenlock.js) (Automated HTTPS for Proxies, Load-Balances, Servers, CLIs)
* [goldilocks.js](https://git.coolaj86.com/coolaj86/goldilocks.js) (A Full-Blown WebServer)
2018-05-23 04:53:45 +00:00
# Demonstration
2018-04-16 01:04:06 +00:00
2018-05-23 05:14:29 +00:00
As this is intended to *build* ACME clients, there is not a simple 2-line example.
2018-04-16 01:04:06 +00:00
I'd recommend first trying out one of the [greenlock-express.js](https://git.coolaj86.com/coolaj86/greenlock-express.js)
or [Greenlock for Web Servers](https://git.coolaj86.com/coolaj86/greenlock-cli.js) examples,
which are guaranteed to work and have great error checking to help you debug.
2018-05-23 04:53:45 +00:00
Then I'd recommend running the example CLI client with a test domain and then investigating the files used for that example:
2018-04-16 01:04:06 +00:00
```bash
2018-05-23 04:53:45 +00:00
git clone https://git.coolaj86.com/coolaj86/acme.js.git
pushd acme.js/
2018-04-16 01:04:06 +00:00
node examples/cli.js
```
The example cli has the following prompts:
2018-03-15 06:41:00 +00:00
2018-04-16 01:04:06 +00:00
```
What web address(es) would you like to get certificates for? (ex: example.com,*.example.com)
What challenge will you be testing today? http-01 or dns-01? [http-01]
What email should we use? (optional)
2018-05-23 04:53:45 +00:00
What directoryUrl should we use? [https://acme-staging-v02.api.letsencrypt.org/directory]
2018-04-16 01:04:06 +00:00
Put the string 'mBfh0SqaAV3MOK3B6cAhCbIReAyDuwuxlO1Sl70x6bM.VNAzCR4THe4czVzo9piNn73B1ZXRLaB2CESwJfKkvRM' into a file at 'example.com/.well-known/acme-challenge/mBfh0SqaAV3MOK3B6cAhCbIReAyDuwuxlO1Sl70x6bM'
echo 'mBfh0SqaAV3MOK3B6cAhCbIReAyDuwuxlO1Sl70x6bM.VNAzCR4THe4czVzo9piNn73B1ZXRLaB2CESwJfKkvRM' > 'example.com/.well-known/acme-challenge/mBfh0SqaAV3MOK3B6cAhCbIReAyDuwuxlO1Sl70x6bM'
Then hit the 'any' key to continue...
```
When you've completed the challenge you can hit a key to continue the process.
If you place the certificate you receive back in `tests/fullchain.pem`
2018-05-23 04:53:45 +00:00
then you can test it with `examples/https-server.js`.
2018-04-16 01:04:06 +00:00
```
examples/cli.js
examples/genkeypair.js
2018-04-16 01:10:48 +00:00
examples/https-server.js
examples/http-server.js
2018-04-16 01:04:06 +00:00
```
2018-03-15 06:43:41 +00:00
# Let's Encrypt v2 / ACME draft 11 Support
2018-05-23 05:09:20 +00:00
This library (acme.js) supports ACME [*draft 11*](https://tools.ietf.org/html/draft-ietf-acme-acme-11),
otherwise known as Let's Encrypt v2 (or v02).
* ACME draft 11
* Let's Encrypt v2
* Let's Encrypt v02
```
# Production URL
https://acme-v02.api.letsencrypt.org/directory
```
```
# Staging URL
https://acme-staging-v02.api.letsencrypt.org/directory
```
# Install
2018-05-23 04:53:45 +00:00
Install via npm
2018-05-23 04:53:45 +00:00
```bash
npm install --save acme
```
2018-05-23 04:53:45 +00:00
Install via git
2018-04-11 17:34:18 +00:00
2018-05-23 04:53:45 +00:00
```bash
npm install https://git.coolaj86.com/coolaj86/acme.js.git
```
2018-04-11 17:34:18 +00:00
# API
2018-04-11 17:34:18 +00:00
2018-05-23 04:53:45 +00:00
This API is an evolution of le-acme-core,
but tries to provide a better mapping to the new draft 11 APIs.
2018-04-11 17:34:18 +00:00
2018-05-23 04:53:45 +00:00
Status: Almost stable, but **not semver locked**.
2018-04-11 17:34:18 +00:00
2018-05-23 04:53:45 +00:00
Patch versions will not introduce breaking changes,
but may introduce lower-level APIs.
Minor versions may change return values to include more information.
2018-04-11 17:34:18 +00:00
2018-05-23 05:03:32 +00:00
### Overview
2018-04-11 17:34:18 +00:00
2018-05-23 04:53:45 +00:00
```
var ACME = require('acme').ACME;
2018-04-11 17:34:18 +00:00
2018-05-23 04:53:45 +00:00
ACME.create(opts)
2018-04-20 07:48:17 +00:00
2018-05-23 04:53:45 +00:00
acme.init(acmeDirectoryUrl)
acme.accounts.create(opts)
acme.certificates.create(opts)
2018-04-11 17:34:18 +00:00
```
2018-05-23 05:03:32 +00:00
### Detailed Explanation
2018-04-11 17:34:18 +00:00
```
2018-05-23 04:53:45 +00:00
var ACME = require('acme').ACME;
2018-04-11 17:34:18 +00:00
2018-04-20 07:48:17 +00:00
// Create Instance (Dependency Injection)
2018-05-23 04:53:45 +00:00
var acme = ACME.create({
RSA: require('rsa-compat').RSA
// other overrides
, request: require('request')
, promisify: require('util').promisify
// used for constructing user-agent
, os: require('os')
, process: require('process')
// used for overriding the default user-agent
, userAgent: 'My custom UA String'
, getUserAgentString: function (deps) { return 'My custom UA String'; }
2018-04-05 11:44:02 +00:00
// don't try to validate challenges locally
, skipChallengeTest: false
});
2018-04-20 07:48:17 +00:00
// Discover Directory URLs
2018-05-23 04:53:45 +00:00
acme.init(acmeDirectoryUrl) // returns Promise<acmeUrls={keyChange,meta,newAccount,newNonce,newOrder,revokeCert}>
2018-04-20 07:48:17 +00:00
// Accounts
2018-05-23 04:53:45 +00:00
acme.accounts.create(options) // returns Promise<regr> registration data
{ email: '<email>' // valid email (server checks MX records)
, accountKeypair: { // privateKeyPem or privateKeyJwt
privateKeyPem: '<ASCII PEM>'
}
, agreeToTerms: fn (tosUrl) {} // returns Promise with tosUrl
}
// Registration
2018-05-23 04:53:45 +00:00
acme.certificates.create(options) // returns Promise<pems={ privkey (key), cert, chain (ca) }>
{ newAuthzUrl: '<url>' // specify acmeUrls.newAuthz
, newCertUrl: '<url>' // specify acmeUrls.newCert
, domainKeypair: {
privateKeyPem: '<ASCII PEM>'
}
, accountKeypair: {
privateKeyPem: '<ASCII PEM>'
}
, domains: [ 'example.com' ]
, setChallenge: fn (hostname, key, val) // return Promise
, removeChallenge: fn (hostname, key) // return Promise
}
```
Helpers & Stuff
```javascript
// Constants
2018-04-11 17:34:18 +00:00
ACME.challengePrefixes['http-01'] // '/.well-known/acme-challenge'
ACME.challengePrefixes['dns-01'] // '_acme-challenge'
```
# Changelog
2018-04-11 17:34:18 +00:00
2018-05-23 05:14:29 +00:00
* v1.0.9 - update docs
* v1.0.8 - rename to acme.js, remove backwards compat
2018-05-23 04:53:45 +00:00
* v1.0.7 - improved error handling again, after user testing
* v1.0.6 - improved error handling
2018-04-24 17:58:14 +00:00
* v1.0.5 - cleanup logging
* v1.0.4 - v6- compat use `promisify` from node's util or bluebird
* v1.0.3 - documentation cleanup
2018-04-16 01:04:06 +00:00
* v1.0.2
* use `options.contact` to provide raw contact array
* made `options.email` optional
* file cleanup
* v1.0.1
2018-04-11 17:34:18 +00:00
* Compat API is ready for use
* Eliminate debug logging
* Apr 10, 2018 - tested backwards-compatibility using greenlock.js
* Apr 5, 2018 - export http and dns challenge tests
* Apr 5, 2018 - test http and dns challenges (success and failure)
* Apr 5, 2018 - test subdomains and its wildcard
* Apr 5, 2018 - test two subdomains
* Apr 5, 2018 - test wildcard
* Apr 5, 2018 - completely match api for acme v1 (le-acme-core.js)
* Mar 21, 2018 - *mostly* matches le-acme-core.js API
* Mar 21, 2018 - can now accept values (not hard coded)
* Mar 20, 2018 - SUCCESS - got a test certificate (hard-coded)
* Mar 20, 2018 - download certificate
* Mar 20, 2018 - poll for status
* Mar 20, 2018 - finalize order (submit csr)
* Mar 20, 2018 - generate domain keypair
* Mar 20, 2018 - respond to challenges
* Mar 16, 2018 - get challenges
* Mar 16, 2018 - new order
* Mar 15, 2018 - create account
* Mar 15, 2018 - generate account keypair
* Mar 15, 2018 - get nonce
* Mar 15, 2018 - get directory
# Legal
[acme.js](https://git.coolaj86.com/coolaj86/acme.js) |
MPL-2.0 |
[Terms of Use](https://therootcompany.com/legal/#terms) |
[Privacy Policy](https://therootcompany.com/legal/#privacy)