add telemetry option to docs

This commit is contained in:
AJ ONeal 2018-05-26 01:28:11 +00:00
parent 694caf3e72
commit def4f6fcb9
1 changed files with 6 additions and 0 deletions

View File

@ -138,6 +138,9 @@ require('greenlock-express').create({
// Join the community to get notified of important updates and help me make greenlock better
, communityMember: true
// Contribute telemetry data to the project
, telemetry: true
//, debug: true
}).listen(80, 443);
@ -285,6 +288,9 @@ var glx = require('greenlock-express').create({
, webrootPath: '/tmp/acme-challenges'
})
// Contribute telemetry data to the project
, telemetry: true
, approveDomains: approveDomains
});
```