Update 'README.md'

这个提交包含在:
AJ ONeal 2018-04-20 06:33:20 +00:00
父节点 74e14fff2c
当前提交 1509de139c
共有 1 个文件被更改,包括 6 次插入20 次删除

查看文件

@ -1,20 +1,4 @@
<!-- BANNER_TPL_BEGIN -->
About coolaj86: We're taking back the Internet!
--------------
Down with Google, Apple, and Facebook!
We're re-decentralizing the web and making it read-write again - one home cloud system at a time.
Tired of serving the Empire? Come join the Rebel Alliance:
<a href="mailto:jobs@coolaj86.com">jobs@coolaj86.com</a> | [Invest in coolaj86 on Wefunder](https://coolaj86.com/invest/) | [Pre-order Cloud](https://coolaj86.com/preorder/), The World's First Home Server for Everyone
<!-- BANNER_TPL_END -->
[![Join the chat at https://gitter.im/coolaj86/letsencrypt-express](https://badges.gitter.im/coolaj86/letsencrypt-express.svg)](https://gitter.im/coolaj86/letsencrypt-express?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
| Sponsored by [ppl](https://ppl.family)
| [greenlock (lib)](https://git.coolaj86.com/coolaj86/node-greenlock)
| [greenlock-cli](https://git.coolaj86.com/coolaj86/greenlock-cli)
| [greenlock-express](https://git.coolaj86.com/coolaj86/greenlock-express)
@ -63,7 +47,7 @@ var sharedOptions = {
webrootPath: path.join(os.tmpdir(), 'acme-challenge') // /tmp/acme-challenge
// used by le-challenge-fs, the default plugin
, renewWithin: 10 * 24 * 60 * 60 * 1000 // 10 days before expiration
, renewWithin: 14 * 24 * 60 * 60 * 1000 // 10 days before expiration
, debug: true
};
@ -101,8 +85,10 @@ module.exports.init = function (sharedOpts) {
var cores = require('os').cpus();
var leMaster = require('greenlock-cluster/master').create({
debug: sharedOpts.debug
, server: 'staging' // CHANGE TO PRODUCTION
// 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
, renewWithin: sharedOpts.renewWithin