From ffb130ec0a596e522090a498d42fd4788fc09363 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Tue, 15 Dec 2015 20:34:16 -0800 Subject: [PATCH] update --- README.md | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 7289847..aeede0c 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,11 @@ You will follow these steps to obtain certificates: #### Register Account & Domain +**But wait**, there's more! +See [example/letsencrypt.js](https://github.com/Daplie/letiny-core/blob/master/example/letsencrypt.js) + +See + ```javascript 'use strict'; @@ -45,11 +50,6 @@ var email = 'user@example.com'; // CHANGE TO YOUR EMAIL var domains = 'example.com'; // CHANGE TO YOUR DOMAIN var acmeDiscoveryUrl = LeCore.stagingServerUrl; // CHANGE to production, when ready -var challengeStore = require('./challenge-store'); -var certStore = require('./cert-store'); -var serve = require('./serve'); -var closer; - var accountPrivateKeyPem = null; var domainPrivateKeyPem = null; var acmeUrls = null; @@ -101,17 +101,6 @@ function runDemo() { } ); } - -// -// Setup the Server -// -closer = serve.init({ - LeCore: LeCore - // needs a default key and cert chain, anything will do -, httpsOptions: require('localhost.daplie.com-certificates') -, challengeStore: challengeStore -, certStore: certStore -}); ``` #### Run a Server on 80, 443, and 5001 (https/tls)