use approvedDomains for array, approveDomains for function

Dieser Commit ist enthalten in:
AJ ONeal 2018-11-05 00:26:51 -07:00
Ursprung 8f6aa1cc8c
Commit df9a27ec20
7 geänderte Dateien mit 7 neuen und 7 gelöschten Zeilen

Datei anzeigen

@ -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

Datei anzeigen

@ -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

Datei anzeigen

@ -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

Datei anzeigen

@ -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

Datei anzeigen

@ -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

Datei anzeigen

@ -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

Datei anzeigen

@ -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) {