greenlock-express.js/examples/force-renew.js

31 lines
742 B
JavaScript
Raw Normal View History

2019-06-03 09:47:07 +00:00
"use strict";
2016-08-16 17:05:41 +00:00
2017-01-25 22:02:16 +00:00
//require('greenlock-express')
2019-06-03 09:47:07 +00:00
require("../")
.create({
// Let's Encrypt v2 is ACME draft 11
version: "draft-11",
2016-08-16 17:05:41 +00:00
2019-06-03 09:47:07 +00:00
server: "https://acme-v02.api.letsencrypt.org/directory",
// Note: If at first you don't succeed, stop and switch to staging
// https://acme-staging-v02.api.letsencrypt.org/directory
2018-05-19 23:54:08 +00:00
2019-06-03 09:47:07 +00:00
email: "john.doe@example.com",
2016-08-16 17:05:41 +00:00
2019-06-03 09:47:07 +00:00
agreeTos: true,
2016-08-16 17:05:41 +00:00
2019-06-03 09:47:07 +00:00
approvedDomains: ["example.com", "www.example.com"],
2016-08-16 17:05:41 +00:00
2019-06-03 09:47:07 +00:00
app: require("express")().use("/", function(req, res) {
res.end("Hello, World!");
}),
2016-08-16 17:05:41 +00:00
2019-06-03 09:47:07 +00:00
renewWithin: 91 * 24 * 60 * 60 * 1000,
renewBy: 90 * 24 * 60 * 60 * 1000,
2016-08-16 17:05:41 +00:00
2019-06-03 09:47:07 +00:00
// Get notified of important updates and help me make greenlock better
communityMember: true,
debug: true
})
.listen(80, 443);