added https

This commit is contained in:
Lloyd Brookes
2015-11-30 11:06:22 +00:00
parent 666d7851db
commit f02f63b9dc
2 changed files with 37 additions and 2 deletions

View File

@ -33,6 +33,14 @@ module.exports = {
description: 'Disable etag-based caching - forces loading from disk each request.', group: 'server'
},
{
name: 'key', type: String, typeLabel: '[underline]{file}', group: 'server',
description: 'SSL key. Required, along with --cert for https.'
},
{
name: 'cert', type: String, typeLabel: '[underline]{file}', group: 'server',
description: 'SSL cert. Required, along with --key for https.'
},
{
name: 'verbose', type: Boolean,
description: 'Verbose output, useful for debugging.', group: 'server'
},