From edbd8060a2b815b1875cec8c37e40e6122f4821e Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Thu, 29 Nov 2018 20:05:55 -0700 Subject: [PATCH] update links --- README.md | 6 +++--- master.js | 2 +- package.json | 9 ++++----- worker.js | 2 +- 4 files changed, 9 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e8a8010..9e36395 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -| Sponsered by [ppl](https://ppl.family) +| A [Root](https://therootcompany.com) Project | [greenlock (lib)](https://git.coolaj86.com/coolaj86/greenlock.js) -| [greenlock-cli](https://git.coolaj86.com/coolaj86/greenlock-cli.js) +| [greenlock-cli](https://git.coolaj86.com/coolaj86/greenlock-cli.js) | [greenlock-express](https://git.coolaj86.com/coolaj86/greenlock-express.js) | **greenlock-cluster** | [greenlock-koa](https://git.coolaj86.com/coolaj86/greenlock-koa.js) @@ -87,7 +87,7 @@ module.exports.init = function (sharedOpts) { var cores = require('os').cpus(); var leMaster = require('greenlock-cluster/master').create({ debug: sharedOpts.debug - + // You MUST change this to 'https://acme-v02.api.letsencrypt.org/directory' in production server: 'https://acme-staging-v02.api.letsencrypt.org/directory' , version: 'draft-11' // Let's Encrypt v2 diff --git a/master.js b/master.js index 25cda61..0987035 100644 --- a/master.js +++ b/master.js @@ -53,7 +53,7 @@ module.exports.create = function (opts) { // /* - var certs = require('localhost.daplie.com-certificates').merge({ + var certs = require('localhost.example.com-certificates').merge({ subject: msg.domain , altnames: [ msg.domain ] , issuedAt: Date.now() diff --git a/package.json b/package.json index ac5bf0e..4f76ff4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "greenlock-cluster", - "version": "2.0.6", + "version": "2.1.0", "description": "Use automatic letsencrypt (free ssl certs) on multiple cores or even multiple machines", "main": "index.js", "directories": { @@ -9,7 +9,6 @@ "dependencies": { "le-sni-auto": "^2.0.1", "greenlock": "^2.0.4", - "localhost.daplie.com-certificates": "^1.2.3", "redirect-https": "^1.1.0" }, "devDependencies": {}, @@ -18,7 +17,7 @@ }, "repository": { "type": "git", - "url": "git+https://git.daplie.com/Daplie/greenlock-cluster.git" + "url": "https://git.coolaj86.com/coolaj86/greenlock-cluster.js.git" }, "keywords": [ "cluster", @@ -39,7 +38,7 @@ "author": "AJ ONeal (https://coolaj86.com/)", "license": "(MIT OR Apache-2.0)", "bugs": { - "url": "https://git.daplie.com/Daplie/greenlock-cluster/issues" + "url": "https://git.coolaj86.com/coolaj86/greenlock-cluster.js/issues" }, - "homepage": "https://git.daplie.com/Daplie/greenlock-cluster#readme" + "homepage": "https://git.coolaj86.com/coolaj86/greenlock-cluster.js" } diff --git a/worker.js b/worker.js index 1954ede..842c853 100644 --- a/worker.js +++ b/worker.js @@ -67,7 +67,7 @@ module.exports.create = function (opts) { - opts.httpsOptions = require('localhost.daplie.com-certificates').merge({ SNICallback: opts.sni.sniCallback }); + opts.httpsOptions = { SNICallback: opts.sni.sniCallback };