Browse Source

use approvedDomains for array, approveDomains for function

beta
AJ ONeal 6 years ago
parent
commit
df9a27ec20
  1. 2
      README.md
  2. 2
      examples/demo.js
  3. 2
      examples/http2.js
  4. 2
      examples/quickstart.js
  5. 2
      examples/spdy.js
  6. 2
      examples/websockets.js
  7. 2
      test/greenlock.js

2
README.md

@ -165,7 +165,7 @@ require('greenlock-express').create({
// You MUST change these to valid domains
// NOTE: all domains will validated and listed on the certificate
, approveDomains: [ 'example.com', 'www.example.com' ]
, approvedDomains: [ 'example.com', 'www.example.com' ]
// You MUST NOT build clients that accept the ToS without asking the user
, agreeTos: true

2
examples/demo.js

@ -22,7 +22,7 @@ var greenlock = Greenlock.create({
// You MUST change these to valid domains
// NOTE: all domains will validated and listed on the certificate
, approveDomains: [ 'example.com', 'www.example.com' ]
, approvedDomains: [ 'example.com', 'www.example.com' ]
// You MUST have access to write to directory where certs are saved
// ex: /home/foouser/acme/etc

2
examples/http2.js

@ -20,7 +20,7 @@ var greenlock = Greenlock.create({
// You MUST change these to valid domains
// NOTE: all domains will validated and listed on the certificate
, approveDomains: [ 'example.com', 'www.example.com' ]
, approvedDomains: [ 'example.com', 'www.example.com' ]
// You MUST have access to write to directory where certs are saved
// ex: /home/foouser/acme/etc

2
examples/quickstart.js

@ -18,7 +18,7 @@ require('../').create({
// You MUST change these to valid domains
// NOTE: all domains will validated and listed on the certificate
, approveDomains: [ 'example.com', 'www.example.com' ]
, approvedDomains: [ 'example.com', 'www.example.com' ]
// You MUST have access to write to directory where certs are saved
// ex: /home/foouser/acme/etc

2
examples/spdy.js

@ -22,7 +22,7 @@ var greenlock = Greenlock.create({
// You MUST change these to valid domains
// NOTE: all domains will validated and listed on the certificate
, approveDomains: [ 'example.com', 'www.example.com' ]
, approvedDomains: [ 'example.com', 'www.example.com' ]
// You MUST have access to write to directory where certs are saved
// ex: /home/foouser/acme/etc

2
examples/websockets.js

@ -19,7 +19,7 @@ var greenlock = Greenlock.create({
// You MUST change these to a valid email and domains
, email: 'john.doe@example.com'
, approveDomains: [ 'example.com', 'www.example.com' ]
, approvedDomains: [ 'example.com', 'www.example.com' ]
, agreeTos: true
// Get notified of important updates and help me make greenlock better

2
test/greenlock.js

@ -4,7 +4,7 @@ var greenlock = Greenlock.create({
version: 'draft-11'
, server: 'https://acme-staging-v02.api.letsencrypt.org/directory'
, agreeTos: true
, approveDomains: [ 'example.com', 'www.example.com' ]
, approvedDomains: [ 'example.com', 'www.example.com' ]
, configDir: require('path').join(require('os').tmpdir(), 'acme')
, app: require('express')().use('/', function (req, res) {

Loading…
Cancel
Save