add telemetry option to docs
This commit is contained in:
parent
694caf3e72
commit
def4f6fcb9
|
@ -138,6 +138,9 @@ require('greenlock-express').create({
|
||||||
// Join the community to get notified of important updates and help me make greenlock better
|
// Join the community to get notified of important updates and help me make greenlock better
|
||||||
, communityMember: true
|
, communityMember: true
|
||||||
|
|
||||||
|
// Contribute telemetry data to the project
|
||||||
|
, telemetry: true
|
||||||
|
|
||||||
//, debug: true
|
//, debug: true
|
||||||
|
|
||||||
}).listen(80, 443);
|
}).listen(80, 443);
|
||||||
|
@ -285,6 +288,9 @@ var glx = require('greenlock-express').create({
|
||||||
, webrootPath: '/tmp/acme-challenges'
|
, webrootPath: '/tmp/acme-challenges'
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// Contribute telemetry data to the project
|
||||||
|
, telemetry: true
|
||||||
|
|
||||||
, approveDomains: approveDomains
|
, approveDomains: approveDomains
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue