greenlock-express.js/README.md

537 lines
21 KiB
Markdown
Raw Permalink Normal View History

2020-01-11 20:15:39 +00:00
# [Greenlock Express v4](https://git.rootprojects.org/root/greenlock-express.js) is Let's Encrypt for Node
2019-09-04 06:15:02 +00:00
2020-01-11 00:51:25 +00:00
| Built by [Root](https://therootcompany.com) for [Hub](https://rootprojects.org/hub/) |
2018-04-20 06:43:02 +00:00
2020-01-11 00:51:25 +00:00
![Greenlock Logo](https://git.rootprojects.org/root/greenlock.js/raw/branch/master/logo/greenlock-1063x250.png "Greenlock Logo")
2018-05-10 06:53:45 +00:00
2020-01-11 00:51:25 +00:00
### Free SSL for Node Web Servers
2019-10-30 05:04:32 +00:00
2019-11-01 10:12:40 +00:00
Greenlock Express is a **Web Server** with **Fully Automated HTTPS** and renewals.
2020-01-11 00:51:25 +00:00
You define your app and let Greenlock handle issuing and renewing Free SSL Certificates.
2019-11-01 21:14:07 +00:00
2019-11-05 10:09:42 +00:00
```bash
npm init
2020-01-06 00:32:20 +00:00
npm install --save greenlock-express@v4
2019-11-05 10:09:42 +00:00
```
2020-01-11 00:51:25 +00:00
`server.js`:
2019-11-05 10:09:42 +00:00
```js
"use strict";
2020-01-09 11:29:18 +00:00
var app = require("./app.js");
2019-11-05 10:09:42 +00:00
require("greenlock-express")
2019-11-18 07:53:26 +00:00
.init({
packageRoot: __dirname,
2020-01-11 00:51:25 +00:00
configDir: "./greenlock.d",
2019-11-05 10:09:42 +00:00
2020-01-09 11:29:18 +00:00
// contact for security and critical bug notices
2020-01-11 00:51:25 +00:00
maintainerEmail: "jon@example.com",
2020-01-09 11:29:18 +00:00
2019-11-18 07:53:26 +00:00
// whether or not to run at cloudscale
cluster: false
2019-11-01 21:14:07 +00:00
})
2020-01-09 11:29:18 +00:00
// Serves on 80 and 443
// Get's SSL certificates magically!
.serve(app);
2019-11-05 10:09:42 +00:00
```
2020-01-11 00:51:25 +00:00
`./greenlock.d/config.json`:
2019-11-18 07:53:26 +00:00
```json
{ "sites": [{ "subject": "example.com", "altnames": ["example.com"] }] }
2019-11-05 10:09:42 +00:00
```
2019-10-28 09:43:53 +00:00
# Let's Encrypt for...
2019-11-01 21:14:07 +00:00
- IoT
- Enterprise On-Prem
- Local Development
- Home Servers
- Quitting Heroku
2018-04-23 19:55:03 +00:00
2019-10-28 09:43:53 +00:00
# Features
2018-04-23 20:02:50 +00:00
2019-11-01 21:14:07 +00:00
- [x] Let's Encrypt v2 (November 2019)
- [x] ACME Protocol (RFC 8555)
- [x] HTTP Validation (HTTP-01)
- [x] DNS Validation (DNS-01)
- [ ] ALPN Validation (TLS-ALPN-01)
- Need ALPN validation? [contact us](mailto:greenlock-support@therootcompany.com)
- [x] Automated HTTPS
- [x] Fully Automatic Renewals every 45 days
- [x] Free SSL
- [x] **Wildcard** SSL
- [x] **Localhost** certificates
- [x] HTTPS-enabled Secure **WebSockets** (`wss://`)
2020-01-11 00:51:25 +00:00
- [x] **Cloud-ready** with Node `cluster`.
2019-11-01 21:14:07 +00:00
- [x] Fully customizable
- [x] **Reasonable defaults**
- [x] Domain Management
- [x] Key and Certificate Management
- [x] ACME Challenge Plugins
2018-04-23 20:02:50 +00:00
2020-01-11 00:51:25 +00:00
# Compatibility
2018-04-23 20:02:50 +00:00
2020-01-11 00:51:25 +00:00
Works with _any_ node http app, including
2018-04-23 20:02:50 +00:00
2020-01-11 00:51:25 +00:00
- [x] Express
- [x] Koa
- [x] hapi
- [x] rill
- [x] http2
- [x] cluster
- [x] etc...
2020-01-11 20:16:48 +00:00
# v4 QuickStart
2018-04-20 07:14:39 +00:00
2020-01-11 20:16:48 +00:00
Serving sites with Free SSL is as easy as 1, 2, 3... 4
2018-04-20 08:59:33 +00:00
2020-07-29 02:38:55 +00:00
## Overview
2020-01-11 20:15:39 +00:00
2020-01-11 00:51:25 +00:00
1. Create a Project with Greenlock Express
- `server.js`
- `app.js`
2. Setup the config file (or database)
2020-07-29 02:38:55 +00:00
- `.greenlockrc`
2020-01-11 00:51:25 +00:00
- `greenlock.d/config.json`
3. Add Domains
- `npx greenlock add --subject example.com --altnames example.com`
4. Hello, World!
- `npm start -- --staging`
2018-04-20 08:59:33 +00:00
2020-07-29 02:38:55 +00:00
### TL;DR
If you're familiar with node, npm, and npx: this is all you need to do:
```bash
2020-07-29 02:39:47 +00:00
npm init
npm install --save greenlock-express@v4
2020-07-29 02:38:55 +00:00
npx greenlock init --config-dir greenlock.d --maintainer-email jon@example.com
npx greenlock add --subject example.com --altnames example.com
2020-07-29 02:39:47 +00:00
2020-07-29 02:38:55 +00:00
npm start -- --staging
```
Once you've tested that that works, you can change `app.js` to suit your needs replace the built-in callbacks for things like certificate storage as you like.
2020-01-11 20:15:39 +00:00
## 1. Create your Project
2020-07-29 02:31:25 +00:00
If you need to install Node.js, do so:
Mac, Linux:
2019-10-28 09:43:53 +00:00
```bash
2020-07-28 22:39:34 +00:00
curl -fsS https://webinstall.dev/node | bash
2020-07-29 02:31:25 +00:00
```
Windows 10:
2020-07-28 22:39:34 +00:00
2020-07-29 02:31:25 +00:00
```pwsh
curl -fsSA "MS" https://webinstall.dev/node | powershell
```
Then create a directory for your project, and initialize it:
2020-01-12 00:02:13 +00:00
2020-07-29 02:31:25 +00:00
```bash
mkdir -p my-sites
pushd my-sites
2019-10-28 09:43:53 +00:00
npm init
2020-01-11 00:51:25 +00:00
npm install --save greenlock-express@v4
2018-04-20 08:59:33 +00:00
```
2020-07-29 02:31:25 +00:00
## 2. Initialize and Config (Dir or DB)
2020-01-11 00:51:25 +00:00
You can use **local file storage** or a **database**. The default is to use file storage.
2016-08-12 07:02:33 +00:00
2020-07-29 02:31:25 +00:00
You'll need to create `server.js` and `greenlock.d/config.json`. You can do so using the CLI, API, or by hand.
### Using the CLI (simplest, recommended)
Anytime you install an npm module that contains an executable,
you can run it using `npx`.
To initialize the Greenlock config, run `npx greenlock init`:
2020-01-11 20:15:39 +00:00
2020-01-11 00:51:25 +00:00
```bash
npx greenlock init --config-dir ./greenlock.d --maintainer-email 'jon@example.com'
2016-08-12 07:02:33 +00:00
```
2020-07-29 02:31:25 +00:00
### By Hand (for advanced users)
Create `server.js` like so:
2020-01-11 01:03:59 +00:00
`server.js`:
2018-05-19 23:54:08 +00:00
2019-10-28 09:52:38 +00:00
```js
2020-07-29 02:31:25 +00:00
'use strict';
2019-11-05 11:01:58 +00:00
2020-07-29 02:31:25 +00:00
var app = require('./app.js');
2020-01-06 00:32:20 +00:00
2020-07-29 02:31:25 +00:00
require('greenlock-express')
2020-01-06 00:32:20 +00:00
.init({
packageRoot: __dirname,
2020-07-29 02:31:25 +00:00
// where to look for configuration
configDir: './greenlock.d',
2020-01-06 00:32:20 +00:00
// whether or not to run at cloudscale
cluster: false
})
2020-01-11 00:51:25 +00:00
// Serves on 80 and 443
// Get's SSL certificates magically!
2020-01-06 00:32:20 +00:00
.serve(app);
2018-05-19 23:54:08 +00:00
```
2016-08-12 07:02:33 +00:00
2020-07-29 02:31:25 +00:00
Create `app.js` like so:
2020-01-11 01:03:59 +00:00
`app.js`:
2019-11-05 11:01:58 +00:00
```js
2020-07-29 02:31:25 +00:00
'use strict';
2019-11-05 11:01:58 +00:00
2020-01-11 00:51:25 +00:00
// Here's a vanilla HTTP app to start,
// but feel free to replace it with Express, Koa, etc
var app = function(req, res) {
2020-07-29 02:31:25 +00:00
res.end('Hello, Encrypted World!');
2020-01-11 00:51:25 +00:00
};
2019-11-05 11:01:58 +00:00
2020-01-11 00:51:25 +00:00
module.exports = app;
2019-11-05 11:01:58 +00:00
```
2020-07-29 02:31:25 +00:00
Greenlock uses `.greenlockrc` to figure out whether to use the file system or a database for config,
as well as where its root directory is.
`.greenlockrc`
```json
{"manager":{"module":"@greenlock/manager"},"configDir":"greenlock.d"}
```
The `greenlock.d/config.json` is NOT intended to be edited by hand, as it is a substitute for a database, but it looks like this:
```json
{ "defaults": { "subscriberEmail": "john.doe@example.com" }, "sites": [] }
```
## 3. Add Sites
For security, you must specify which sites you allow to request certificates. If you need this to be dynamic (i.e. checking a database or API, see the section below on custom site managers).
Every site has a "subject" (its primary domain name) and one or more "altnames" (secondary or related domain names on the same certificate).
### Using CLI (simple, recommended)
Simply supply the names of sites that you manage and they will be added to the file system config, or database.
2019-11-05 11:01:58 +00:00
```bash
2020-04-29 15:29:14 +00:00
npx greenlock add --subject example.com --altnames example.com,www.example.com
2019-11-05 11:01:58 +00:00
```
2019-11-01 10:12:40 +00:00
2020-07-29 02:31:25 +00:00
### By Hand (debugging only)
You should NOT edit `greenlock.d/config.json` with your own tools. Use `greenlock.manager.add({})` instead.
2020-01-11 01:03:59 +00:00
`greenlock.d/config.json`:
2020-01-11 00:51:25 +00:00
<!-- TODO update manager to write array rather than object -->
2019-11-01 10:12:40 +00:00
```json
2020-04-29 15:29:45 +00:00
{ "sites": [{ "subject": "example.com", "altnames": [ "example.com", "www.example.com" ] }] }
2019-11-01 10:12:40 +00:00
```
2020-07-29 02:31:25 +00:00
## 4. Hello, Encrypted World!
That was it! Now you can run your server!
When you run `npm start`, it will automatically run `node server.js` (or `package.json.scripts.start`).
For arguments that `npm start` should ignore, place them after `--`.
Here we use `--staging` in order to tell greenlock to issue test certificates rather than real certificates.
2020-01-11 20:15:39 +00:00
2019-10-28 09:43:53 +00:00
```bash
2020-01-11 01:03:59 +00:00
# Note: you can use npm start to run server.js with the --staging flag set
2020-01-11 00:51:25 +00:00
npm start -- --staging
```
2018-04-20 07:09:34 +00:00
2020-01-11 00:51:25 +00:00
```txt
> my-project@1.0.0 start /srv/www/my-project
> node server.js
2016-08-17 15:11:10 +00:00
2020-01-11 00:51:25 +00:00
Listening on 0.0.0.0:80 for ACME challenges and HTTPS redirects
Listening on 0.0.0.0:443 for secure traffic
2019-11-05 11:01:58 +00:00
```
2020-07-29 02:33:36 +00:00
If everything worked you can visit your site in your browser, and after a few seconds you'll get a certificate warning and, after that, see a "Hello World" message. The debug (staging) certificates will be saved in `greenlock.d/staging`. Run again without `--staging` and you will get real certificates.
2020-07-29 02:31:25 +00:00
### Season to taste
Now you're ready to update `app.js` with your code. For example, try this next:
```bash
npm install --save express
mkdir -p public
echo '<h1>Hello!</h1>' >> public/index.html
```
`app.js`:
```js
'use strict';
var path = require('path');
var express = require('express');
var app = express();
app.get('/', express.static(path.join(__dirname, "public")));
module.exports = app;
// for development and debugging
if (require.main === module) {
require('http').createServer(app).listen(3000, function () {
console.info("Listening for HTTP on", this.address());
});
}
```
# Walkthrough
2016-08-17 15:25:07 +00:00
2020-01-11 20:15:39 +00:00
For a more detail read the full
[WALKTHROUGH](https://git.rootprojects.org/root/greenlock-express.js/src/branch/master/WALKTHROUGH.md).
2020-04-30 18:24:29 +00:00
# Examples
To see all of the examples, just browse [greenlock-express.js/examples/](https://git.rootprojects.org/root/greenlock-express.js/src/branch/master/examples)
| Example | Location + Description |
| :--------------------: | :----------------------------------------------------------------------------------------------------------------------------------------- |
| Express | [./examples/express/][ex-express] how to export an express app |
| Node's **http2** | [./examples/http2/][ex-http2] how to use Node's built-in http2 server |
| Node's https | [./examples/https][ex-https] how to customize the https server |
| **WebSockets** | [./examples/websockets/][ex-websockets] how to use `on('upgrade')` |
| <span>Socket.IO</span> | [./examples/socket.io][ex-socketio] how to overcomplicate a persistent connection |
| Cluster | [./examples/cluster/][ex-cluster] how to use Node's built-in clustering with master and worker processes |
| **Wildcards** | [coming someday][ex-wildcards] (ask to help create this) how to use DNS-01 for wildcard certs |
| **Localhost** | [coming someday][ex-localhost] (ask to help create this) how to use DNS-01 for domains that resolve to private networks, such as 127.0.0.1 |
| **CI/CD** | [coming someday][ex-cicd] (ask to help create this) how to use the `--staging` environment for test deployments |
| HTTP Proxy | [examples/http-proxy][ex-http-proxy] how to (reverse) proxy decrypted traffic to another server |
| - | Build your own<br>Be sure to tell me about it (open an issue) |
[ex-express]: https://git.rootprojects.org/root/greenlock-express.js/src/branch/master/examples/express/
[ex-http2]: https://git.rootprojects.org/root/greenlock-express.js/src/branch/master/examples/http2/
[ex-https]: https://git.rootprojects.org/root/greenlock-express.js/src/branch/master/examples/https/
[ex-websockets]: https://git.rootprojects.org/root/greenlock-express.js/src/branch/master/examples/websockets/
[ex-socketio]: https://git.rootprojects.org/root/greenlock-express.js/src/branch/master/examples/socketo.io/
[ex-cluster]: https://git.rootprojects.org/root/greenlock-express.js/src/branch/master/examples/cluster/
[ex-wildcards]: https://git.rootprojects.org/root/greenlock-express.js/src/branch/master/examples/wildcards/
[ex-localhost]: https://git.rootprojects.org/root/greenlock-express.js/src/branch/master/examples/localhost/
[ex-cicd]: https://git.rootprojects.org/root/greenlock-express.js/src/branch/master/examples/ci-cd/
[ex-http-proxy]: https://git.rootprojects.org/root/greenlock-express.js/src/branch/master/examples/http-proxy/
2020-04-30 18:17:06 +00:00
# FAQ
2020-04-30 18:24:29 +00:00
## 1. But did YOU read the QuickStart?
2020-04-30 18:17:06 +00:00
2020-04-30 18:19:33 +00:00
99% of the questions I get are answered in the QuickStart, or in the Examples.
Before you go into your specific use case, just try out the QuickStart from start to finish so that you can see that the default setup works, you get feel for the "lay of the land", and you know what to edit.
2020-04-30 18:17:06 +00:00
2020-04-30 18:24:29 +00:00
## 2. How to use JavaScript configuration?
2020-04-30 18:17:06 +00:00
2020-04-30 18:22:50 +00:00
You don't. It's JSON on purpose.
The configuration has to be serializable (i.e. could go in a database).
2020-04-30 18:17:06 +00:00
The config file is meant for **simple** use cases, for the average dev and it is managed with `npx greenlock ...`, as shown in the QuickStart.
2020-04-30 18:22:50 +00:00
If you have a **dynamic** or **advanced** use case (i.e. you need stuff in a database, or to change config on-the-fly), you can use the Greenlock API (not Greenlock Express) and you'll love it.
2020-04-30 18:17:06 +00:00
2020-04-30 18:22:50 +00:00
If you're layering a lot of **complexity** with dev ops tools, but you don't really understand the tools that well (i.e. **Docker**), either use ENVIRONMENT variables or put the `npx greenlock ...` commands in your setup script. You MUST use a database for **lambda** "cloud functions" and such.
2020-04-30 18:17:06 +00:00
2020-04-30 18:22:50 +00:00
You can also just mangle the Greenlock API to do what you want... but I don't recommend it. Keep it simple and your future self with thank you.
2020-04-30 18:17:06 +00:00
2020-04-30 18:19:33 +00:00
General rule of thumb: commit code, not data / config.
2020-04-30 18:24:29 +00:00
## 3. How to use non-standard ports (not 80, 443)?
2020-04-30 18:17:06 +00:00
You don't. Not usually.
Let's Encrypt **REQUIRES port 80** for HTTP-01 challenges.
But if you're using DNS-01 or you have a proxy in place, just use the raw node server. See these examples:
- [examples/http/server.js](https://git.rootprojects.org/root/greenlock-express.js/src/branch/master/examples/http/server.js)
- [examples/https/server.js](https://git.rootprojects.org/root/greenlock-express.js/src/branch/master/examples/https/server.js)
If you want to use Greenlock as a proxy, see this example:
- [examples/http-proxy/server.js](https://git.rootprojects.org/root/greenlock-express.js/src/branch/master/examples/http-proxy/server.js)
2020-01-11 20:36:13 +00:00
# Troubleshooting
### What if the example didn't work?
Double check the following:
- **Public Facing IP** for `http-01` challenges
- Are you running this _as_ a public-facing webserver (good)? or localhost (bad)?
- Does `ifconfig` show a public address (good)? or a private one - 10.x, 192.168.x, etc (bad)?
- If you're on a non-public server, are you using the `dns-01` challenge?
- **valid email**
- You MUST set `maintainerEmail` to a **valid address**
- MX records must validate (`dig MX example.com` for `'john@example.com'`)
- **valid DNS records**
- Must have public DNS records (test with `dig +trace A example.com; dig +trace www.example.com` for `[ 'example.com', 'www.example.com' ]`)
- **write access**
- You MUST set `configDir` to a writeable location (test with `touch ./greenlock.d/config.json`)
- **port binding privileges**
- You MUST be able to bind to ports 80 and 443
- You can do this via `sudo` or [`setcap`](https://gist.github.com/firstdoit/6389682)
- **API limits**
- You MUST NOT exceed the API [**usage limits**](https://letsencrypt.org/docs/staging-environment/) per domain, certificate, IP address, etc
- **Red Lock, Untrusted**
- You MUST switch from `npm start -- --staging` to `npm start` to use the **production** server
- The API URL should not have 'acme-staging-v02', but should have 'acme-v02'
2020-01-11 00:51:25 +00:00
# Using a Database, S3, etc
If you have a small site, the default file storage will work well for you.
If you have many sites with many users, you'll probably want to store config in a database of some sort.
See the section on **Custom** callbacks and plugins below.
# Advanced Configuration
All of the advanced configuration is done by replacing the default behavior with callbacks.
You can whip up your own, or you can use something that's published to npm.
See the section on **Custom** callbacks and plugins below.
# Easy to Customize
<!-- greenlock-manager-test => greenlock-manager-custom -->
<!--
- [greenlock.js/examples/](https://git.rootprojects.org/root/greenlock.js/src/branch/master/examples)
-->
2019-11-01 21:14:07 +00:00
- [Custom Domain Management](https://git.rootprojects.org/root/greenlock-manager-test.js)
2020-01-17 00:16:30 +00:00
- edit `server.js` and/or `.greenlockrc` to switch from the default `configDir` manager to your config system or database
- CLI example: `npx greenlock init --manager ./path-or-npm-name.js --manager-FOO 'set option FOO'`
2019-11-01 21:14:07 +00:00
- [Custom Key & Cert Storage](https://git.rootprojects.org/root/greenlock-store-test.js)
2020-01-17 00:16:30 +00:00
- edit the `defaults` section of `greenlock.d/config.json` to change the certificate store or database
- CLI example: `npx greenlock defaults --store greenlock-store-fs --store-base-path ./greenlock.d`
2019-11-01 21:14:07 +00:00
- [Custom ACME HTTP-01 Challenges](https://git.rootprojects.org/root/acme-http-01-test.js)
2020-01-17 00:16:30 +00:00
- edit the `defaults` section of `greenlock.d/config.json` to change the challenges by hand
- CLI example: `npx greenlock defaults --challenge-http-01 ./you-http-01.js`
2019-11-01 21:14:07 +00:00
- [Custom ACME DNS-01 Challenges](https://git.rootprojects.org/root/acme-dns-01-test.js)
2020-01-17 00:16:30 +00:00
- edit the `defaults` section of `greenlock.d/config.json` to change the challenges by hand
- CLI example: `npx greenlock defaults --challenge-dns-01 acme-dns-01-ovh --challenge-dns-01-token xxxx`
- Per-site example: `npx greenlock update --subject example.com --challenge-dns-01 ./your-dns-01.js`
- API example:
```js
greenlock.sites.set({
subject: "example.com",
challenges: {
"dns-01": {
module: "my-npm-module-name",
foo: "some option",
bar: "some other option"
}
}
});
```
If you're using the default `configDir` management you can edit `greenlock.d/config.json` by hand to change
which default and per-site modules are used.
You can use the CLI, even if you're using a database, buckets, or your own file storage.
You can also use the API, particularly if you need to set values dynamically per-site or per-user
rather than using the global defaults. The certificate store and all challenges can be set
per-site, but most per-site use cases are for DNS-01.
# Ready-made Integrations
Greenlock Express integrates between Let's Encrypt's ACME Challenges and many popular services.
| Type | Service | Plugin |
| ----------- | ----------------------------------------------------------------------------------- | ------------------------ |
| dns-01 | CloudFlare | acme-dns-01-cloudflare |
| dns-01 | [Digital Ocean](https://git.rootprojects.org/root/acme-dns-01-digitalocean.js) | acme-dns-01-digitalocean |
| dns-01 | [DNSimple](https://git.rootprojects.org/root/acme-dns-01-dnsimple.js) | acme-dns-01-dnsimple |
| dns-01 | [DuckDNS](https://git.rootprojects.org/root/acme-dns-01-duckdns.js) | acme-dns-01-duckdns |
| http-01 | File System / [Web Root](https://git.rootprojects.org/root/acme-http-01-webroot.js) | acme-http-01-webroot |
| dns-01 | [GoDaddy](https://git.rootprojects.org/root/acme-dns-01-godaddy.js) | acme-dns-01-godaddy |
| dns-01 | [Gandi](https://git.rootprojects.org/root/acme-dns-01-gandi.js) | acme-dns-01-gandi |
| dns-01 | [NameCheap](https://git.rootprojects.org/root/acme-dns-01-namecheap.js) | acme-dns-01-namecheap |
| dns-01 | [Name&#46;com](https://git.rootprojects.org/root/acme-dns-01-namedotcom.js) | acme-dns-01-namedotcom |
| dns-01 | Route53 (AWS) | acme-dns-01-route53 |
| http-01 | S3 (AWS, Digital Ocean, Scaleway) | acme-http-01-s3 |
| dns-01 | [Vultr](https://git.rootprojects.org/root/acme-dns-01-vultr.js) | acme-dns-01-vultr |
| dns-01 | [Build your own](https://git.rootprojects.org/root/acme-dns-01-test.js) | acme-dns-01-test |
| http-01 | [Build your own](https://git.rootprojects.org/root/acme-http-01-test.js) | acme-http-01-test |
| tls-alpn-01 | [Contact us](mailto:support@therootcompany.com) | - |
2019-11-05 11:01:58 +00:00
Example Usage:
```bash
npx greenlock defaults --challenge-dns-01 acme-dns-01-ovh --challenge-dns-01-token xxxx
npx greenlock defaults --challenge-http-01 acme-http-01-s3 --challenge-http-01-bucket my-bucket
```
Search `acme-http-01-` or `acme-dns-01-` on npm to find more.
2019-10-28 09:43:53 +00:00
# Full Documentation
2016-08-12 07:56:19 +00:00
2019-10-28 09:43:53 +00:00
<!--
- Greenlock CLI
- Greenlock JavaScript API
-->
2016-08-16 01:15:16 +00:00
2019-10-28 09:43:53 +00:00
Most of the documentation is done by use-case examples, as shown up at the top of the README.
2016-08-15 23:12:39 +00:00
2019-10-28 09:43:53 +00:00
We're working on more comprehensive documentation for this newly released version.
**Please open an issue** with questions in the meantime.
2016-08-15 23:12:39 +00:00
2019-10-28 09:43:53 +00:00
# Commercial Support
2016-08-12 07:56:19 +00:00
2019-10-28 09:43:53 +00:00
Do you need...
2016-08-12 07:56:19 +00:00
2019-11-01 21:14:07 +00:00
- training?
- specific features?
- different integrations?
- bugfixes, on _your_ timeline?
- custom code, built by experts?
- commercial support and licensing?
2018-05-03 00:55:35 +00:00
2019-10-28 09:43:53 +00:00
You're welcome to [contact us](mailto:aj@therootcompany.com) in regards to IoT, On-Prem,
Enterprise, and Internal installations, integrations, and deployments.
2018-05-03 00:55:35 +00:00
2019-10-28 09:43:53 +00:00
We have both commercial support and commercial licensing available.
2018-05-31 21:14:23 +00:00
2019-10-28 09:43:53 +00:00
We also offer consulting for all-things-ACME and Let's Encrypt.
2019-05-16 04:19:58 +00:00
# Legal &amp; Rules of the Road
2019-05-16 04:19:58 +00:00
Greenlock&trade; is a [trademark](https://rootprojects.org/legal/#trademark) of AJ ONeal
2019-05-16 04:19:58 +00:00
The rule of thumb is "attribute, but don't confuse". For example:
2019-05-16 04:39:35 +00:00
> Built with [Greenlock Express](https://git.rootprojects.org/root/greenlock.js) (a [Root](https://rootprojects.org) project).
2019-05-16 04:19:58 +00:00
Please [contact us](mailto:aj@therootcompany.com) if you have any questions in regards to our trademark,
attribution, and/or visible source policies. We want to build great software and a great community.
[Greenlock&trade;](https://git.rootprojects.org/root/greenlock.js) |
MPL-2.0 |
[Terms of Use](https://therootcompany.com/legal/#terms) |
[Privacy Policy](https://therootcompany.com/legal/#privacy)