bump
This commit is contained in:
parent
1a9f1d2a34
commit
2fae624669
30
README.md
30
README.md
|
@ -1,4 +1,4 @@
|
||||||
# New Documentation & [v2/v3 Migration Guide](https://git.rootprojects.org/root/greenlock.js/src/branch/v3/MIGRATION_GUIDE_V2_V3.md)
|
# New Documentation & [v2/v3 Migration Guide](https://git.rootprojects.orggreenlock.js/src/branch/v3/MIGRATION_GUIDE_V2_V3.md)
|
||||||
|
|
||||||
Greenlock v3 was just released from private beta **today** (Nov 1st, 2019).
|
Greenlock v3 was just released from private beta **today** (Nov 1st, 2019).
|
||||||
|
|
||||||
|
@ -6,19 +6,19 @@ We're still working on the full documentation for this new version,
|
||||||
so please be patient.
|
so please be patient.
|
||||||
|
|
||||||
To start, check out the
|
To start, check out the
|
||||||
[Migration Guide](https://git.rootprojects.org/root/greenlock.js/src/branch/v3/MIGRATION_GUIDE_V2_V3.md).
|
[Migration Guide](https://git.rootprojects.orggreenlock.js/src/branch/v3/MIGRATION_GUIDE_V2_V3.md).
|
||||||
|
|
||||||
!["Greenlock Logo"](https://git.rootprojects.org/root/greenlock.js/raw/branch/master/logo/greenlock-1063x250.png 'Greenlock lock logo and work mark')
|
!["Greenlock Logo"](https://git.rootprojects.orggreenlock.js/raw/branch/master/logo/greenlock-1063x250.png 'Greenlock lock logo and work mark')
|
||||||
|
|
||||||
!["Greenlock Function"](https://git.rootprojects.org/root/greenlock.js/raw/branch/master/logo/from-not-secure-to-secure-url-bar.png 'from url bar showing not secure to url bar showing secure')
|
!["Greenlock Function"](https://git.rootprojects.orggreenlock.js/raw/branch/master/logo/from-not-secure-to-secure-url-bar.png 'from url bar showing not secure to url bar showing secure')
|
||||||
|
|
||||||
# [Greenlock](https://git.rootprojects.org/root/greenlock.js) is Let's Encrypt for JavaScript
|
# [Greenlock](https://git.rootprojects.orggreenlock.js) is Let's Encrypt for JavaScript
|
||||||
|
|
||||||
| Built by [Root](https://rootprojects.org) for [Hub](https://rootprojects.org/hub/)
|
| Built by [Root](https://rootprojects.org) for [Hub](https://rootprojects.org/hub/)
|
||||||
|
|
||||||
Greenlock™ is an Automated Certificate Management Environement 🔐.
|
Greenlock™ is an Automated Certificate Management Environement 🔐.
|
||||||
|
|
||||||
| **Greenlock** | [Greenlock Express](https://git.rootprojects.org/root/greenlock-express.js) | [ACME.js](https://git.rootprojects.org/root/acme.js) |
|
| **Greenlock** | [Greenlock Express](https://git.rootprojects.orggreenlock-express.js) | [ACME.js](https://git.rootprojects.org/root/acme.js) |
|
||||||
|
|
||||||
It uses **Let's Encrypt** to generate Free SSL Certificates, including **Wildcard** SSL.
|
It uses **Let's Encrypt** to generate Free SSL Certificates, including **Wildcard** SSL.
|
||||||
It supports **Automated Renewal** of certs for Fully Automated HTTPS.
|
It supports **Automated Renewal** of certs for Fully Automated HTTPS.
|
||||||
|
@ -289,7 +289,7 @@ gl.add({
|
||||||
## Greenlock#get()
|
## Greenlock#get()
|
||||||
|
|
||||||
**Disclaimer**: This is only intended for testing, demos, and SNICallback
|
**Disclaimer**: This is only intended for testing, demos, and SNICallback
|
||||||
(in [Greenlock Express](https://git.rootprojects.org/root/greenlock-express.js)).
|
(in [Greenlock Express](https://git.rootprojects.orggreenlock-express.js)).
|
||||||
|
|
||||||
Greenlock is intended to be left running to allow it to fetech and renew certifictates automatically.
|
Greenlock is intended to be left running to allow it to fetech and renew certifictates automatically.
|
||||||
|
|
||||||
|
@ -297,7 +297,7 @@ It is intended that you use the `store` callbacks to new certificates instantly
|
||||||
This also protects you from accidentally stampeding the Let's Encrypt API with hundreds (or thousands)
|
This also protects you from accidentally stampeding the Let's Encrypt API with hundreds (or thousands)
|
||||||
of certificate requests.
|
of certificate requests.
|
||||||
|
|
||||||
- [Store Callback Documentation](https://git.rootprojects.org/root/greenlock-store-test.js)
|
- [Store Callback Documentation](https://git.rootprojects.orggreenlock-store-test.js)
|
||||||
|
|
||||||
```js
|
```js
|
||||||
return greenlock.get({ servername }).then(function(site) {
|
return greenlock.get({ servername }).then(function(site) {
|
||||||
|
@ -402,7 +402,7 @@ Greenlock comes with reasonable defaults but when you install it,
|
||||||
you should also install any plugins that you need.
|
you should also install any plugins that you need.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
npm install --save @root/greenlock
|
npm install --save greenlock
|
||||||
npm install --save greenlock-manager-fs
|
npm install --save greenlock-manager-fs
|
||||||
npm install --save greenlock-store-fs
|
npm install --save greenlock-store-fs
|
||||||
npm install --save acme-http-01-standalone
|
npm install --save acme-http-01-standalone
|
||||||
|
@ -420,7 +420,7 @@ TODO
|
||||||
```js
|
```js
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
var Greenlock = require(@root/greenlock-express);
|
var Greenlock = require(greenlock-express);
|
||||||
|
|
||||||
var greenlock = Greenlock.create({
|
var greenlock = Greenlock.create({
|
||||||
// for security and critical bug notices
|
// for security and critical bug notices
|
||||||
|
@ -450,7 +450,7 @@ TODO
|
||||||
<!-- greenlock-manager-test => greenlock-manager-custom -->
|
<!-- greenlock-manager-test => greenlock-manager-custom -->
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
- [greenlock.js/examples/](https://git.rootprojects.org/root/greenlock.js/src/branch/master/examples)
|
- [greenlock.js/examples/](https://git.rootprojects.orggreenlock.js/src/branch/master/examples)
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
|
@ -458,7 +458,7 @@ TODO
|
||||||
|
|
||||||
## SSL Certificate & Domain Management
|
## SSL Certificate & Domain Management
|
||||||
|
|
||||||
Full Docs: https://git.rootprojects.org/root/greenlock-manager-test.js
|
Full Docs: https://git.rootprojects.orggreenlock-manager-test.js
|
||||||
|
|
||||||
This is what keeps the mapping of domains <-> certificates.
|
This is what keeps the mapping of domains <-> certificates.
|
||||||
In many cases it will interact with the same database as the Key & Cert Store, and probably the code as well.
|
In many cases it will interact with the same database as the Key & Cert Store, and probably the code as well.
|
||||||
|
@ -507,7 +507,7 @@ In many cases it will interact with the same database as the Key & Cert Store, a
|
||||||
|
|
||||||
## Key and Certificate Store
|
## Key and Certificate Store
|
||||||
|
|
||||||
Full Docs: https://git.rootprojects.org/root/greenlock-store-test.js
|
Full Docs: https://git.rootprojects.orggreenlock-store-test.js
|
||||||
|
|
||||||
This set of callbacks update your service with new certificates and keypairs.
|
This set of callbacks update your service with new certificates and keypairs.
|
||||||
|
|
||||||
|
@ -655,12 +655,12 @@ Greenlock™ is a [trademark](https://rootprojects.org/legal/#trademark) of
|
||||||
|
|
||||||
The rule of thumb is "attribute, but don't confuse". For example:
|
The rule of thumb is "attribute, but don't confuse". For example:
|
||||||
|
|
||||||
> Built with [Greenlock Express](https://git.rootprojects.org/root/greenlock.js) (a [Root](https://rootprojects.org) project).
|
> Built with [Greenlock Express](https://git.rootprojects.orggreenlock.js) (a [Root](https://rootprojects.org) project).
|
||||||
|
|
||||||
Please [contact us](mailto:aj@therootcompany.com) if you have any questions in regards to our trademark,
|
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.
|
attribution, and/or visible source policies. We want to build great software and a great community.
|
||||||
|
|
||||||
[Greenlock™](https://git.rootprojects.org/root/greenlock.js) |
|
[Greenlock™](https://git.rootprojects.orggreenlock.js) |
|
||||||
MPL-2.0 |
|
MPL-2.0 |
|
||||||
[Terms of Use](https://therootcompany.com/legal/#terms) |
|
[Terms of Use](https://therootcompany.com/legal/#terms) |
|
||||||
[Privacy Policy](https://therootcompany.com/legal/#privacy)
|
[Privacy Policy](https://therootcompany.com/legal/#privacy)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "greenlock",
|
"name": "greenlock",
|
||||||
"version": "3.0.25",
|
"version": "3.0.26",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -54,6 +54,17 @@
|
||||||
"greenlock-manager-fs": "^3.0.1",
|
"greenlock-manager-fs": "^3.0.1",
|
||||||
"greenlock-store-fs": "^3.2.0",
|
"greenlock-store-fs": "^3.2.0",
|
||||||
"safe-replace": "^1.1.0"
|
"safe-replace": "^1.1.0"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"greenlock-manager-fs": {
|
||||||
|
"version": "3.0.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/greenlock-manager-fs/-/greenlock-manager-fs-3.0.3.tgz",
|
||||||
|
"integrity": "sha512-Jwo60nHd10PNUA9M6cylD9YB4x4hzlfO2LRIGI0X+V+zA0x3KVbNW14yj8frdfHrtsWC1JQe7oFnHVdoRbAU2A==",
|
||||||
|
"requires": {
|
||||||
|
"@root/mkdirp": "^1.0.0",
|
||||||
|
"safe-replace": "^1.1.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@root/keypairs": {
|
"@root/keypairs": {
|
||||||
|
@ -106,15 +117,6 @@
|
||||||
"integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==",
|
"integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"greenlock-manager-fs": {
|
|
||||||
"version": "3.0.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/greenlock-manager-fs/-/greenlock-manager-fs-3.0.1.tgz",
|
|
||||||
"integrity": "sha512-vZfGFq1TTKxaAqdGDUwNservrNzXx0xCwT/ovG/N378GrhS+U5S8B8LUlNtQU7Fdw6RToMiBcm22OOxSrvZ2zw==",
|
|
||||||
"requires": {
|
|
||||||
"@root/mkdirp": "^1.0.0",
|
|
||||||
"safe-replace": "^1.1.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"greenlock-store-fs": {
|
"greenlock-store-fs": {
|
||||||
"version": "3.2.0",
|
"version": "3.2.0",
|
||||||
"resolved": "https://registry.npmjs.org/greenlock-store-fs/-/greenlock-store-fs-3.2.0.tgz",
|
"resolved": "https://registry.npmjs.org/greenlock-store-fs/-/greenlock-store-fs-3.2.0.tgz",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "greenlock",
|
"name": "greenlock",
|
||||||
"version": "3.0.25",
|
"version": "3.0.26",
|
||||||
"description": "The easiest Let's Encrypt client for Node.js and Browsers",
|
"description": "The easiest Let's Encrypt client for Node.js and Browsers",
|
||||||
"homepage": "https://rootprojects.org/greenlock/",
|
"homepage": "https://rootprojects.org/greenlock/",
|
||||||
"main": "greenlock.js",
|
"main": "greenlock.js",
|
||||||
|
@ -43,7 +43,7 @@
|
||||||
"@root/request": "^1.3.10",
|
"@root/request": "^1.3.10",
|
||||||
"acme-http-01-standalone": "^3.0.5",
|
"acme-http-01-standalone": "^3.0.5",
|
||||||
"cert-info": "^1.5.1",
|
"cert-info": "^1.5.1",
|
||||||
"greenlock-manager-fs": "^3.0.1",
|
"greenlock-manager-fs": "^3.0.3",
|
||||||
"greenlock-store-fs": "^3.2.0",
|
"greenlock-store-fs": "^3.2.0",
|
||||||
"safe-replace": "^1.1.0"
|
"safe-replace": "^1.1.0"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue