ignore TODOs for now

This commit is contained in:
AJ ONeal 2019-10-21 20:30:57 -06:00
parent f3cacf6db4
commit 7fc11f7908
1 changed files with 29 additions and 22 deletions

View File

@ -14,6 +14,7 @@ Greenlock™ is the easiest way to integrate Let's Encrypt into your project
We've built it simple enough for Hobbyists, and robust enough for the Enterprise. We've built it simple enough for Hobbyists, and robust enough for the Enterprise.
<!--
# Localhost Development # Localhost Development
<details> <details>
@ -36,6 +37,8 @@ TODO
TODO TODO
</details> </details>
-->
# JavaScript Library # JavaScript Library
<details> <details>
@ -127,11 +130,14 @@ TODO
</details> </details>
<!--
<details> <details>
<summary>Node.js</summary> <summary>Node.js</summary>
```bash ```bash
npm install --save @root/greenlock npm install --save @root/greenlock
```` ```
TODO TODO
@ -139,6 +145,7 @@ TODO
<details> <details>
<summary>Express.js</summary> <summary>Express.js</summary>
```js ```js
'use strict'; 'use strict';
@ -151,10 +158,9 @@ maintainerEmail: 'jon@example.com'
// for // for
maintainerNewsletter: true maintainerNewsletter: true
}); });
``` ```
</details>
</details>
<details> <details>
<summary>WebPack</summary> <summary>WebPack</summary>
@ -166,6 +172,8 @@ TODO
TODO TODO
</details> </details>
-->
# HTTP-01 &amp; DNS-01 Integrations # HTTP-01 &amp; DNS-01 Integrations
For Public Web Servers running on a VPS, the **default HTTP-01 challenge plugin** For Public Web Servers running on a VPS, the **default HTTP-01 challenge plugin**
@ -189,22 +197,21 @@ http-01 will only be supplied as a defaut if no other challenge is provided.
You can use ACME (Let's Encrypt) with You can use ACME (Let's Encrypt) with
- [x] DNS-01 Challenges - [x] DNS-01 Challenges
- CloudFlare - CloudFlare
- [Digital Ocean](https://git.rootprojects.org/root/acme-dns-01-digitalocean.js) - [Digital Ocean](https://git.rootprojects.org/root/acme-dns-01-digitalocean.js)
- [DNSimple](https://git.rootprojects.org/root/acme-dns-01-dnsimple.js) - [DNSimple](https://git.rootprojects.org/root/acme-dns-01-dnsimple.js)
- [DuckDNS](https://git.rootprojects.org/root/acme-dns-01-duckdns.js) - [DuckDNS](https://git.rootprojects.org/root/acme-dns-01-duckdns.js)
- [GoDaddy](https://git.rootprojects.org/root/acme-dns-01-godaddy.js) - [GoDaddy](https://git.rootprojects.org/root/acme-dns-01-godaddy.js)
- [Gandi](https://git.rootprojects.org/root/acme-dns-01-gandi.js) - [Gandi](https://git.rootprojects.org/root/acme-dns-01-gandi.js)
- [NameCheap](https://git.rootprojects.org/root/acme-dns-01-namecheap.js) - [NameCheap](https://git.rootprojects.org/root/acme-dns-01-namecheap.js)
- [Name&#46;com](https://git.rootprojects.org/root/acme-dns-01-namedotcom.js) - [Name&#46;com](https://git.rootprojects.org/root/acme-dns-01-namedotcom.js)
- Route53 (AWS) - Route53 (AWS)
- [Vultr](https://git.rootprojects.org/root/acme-dns-01-vultr.js) - [Vultr](https://git.rootprojects.org/root/acme-dns-01-vultr.js)
- Build your own - Build your own
- [x] HTTP-01 Challenges - [x] HTTP-01 Challenges
- [In-Memory](https://git.rootprojects.org/root/acme-http-01-standalone.js) (Standalone) - [In-Memory](https://git.rootprojects.org/root/acme-http-01-standalone.js) (Standalone)
- [FileSystem](https://git.rootprojects.org/root/acme-http-01-webroot.js) (WebRoot) - [FileSystem](https://git.rootprojects.org/root/acme-http-01-webroot.js) (WebRoot)
- S3 (AWS, Digital Ocean, etc) - S3 (AWS, Digital Ocean, etc)
- [x] TLS-ALPN-01 Challenges - [x] TLS-ALPN-01 Challenges
- Contact us to learn about Greenlock Pro - Contact us to learn about Greenlock Pro
```