Fix default values for SSL command line

813ec537cd1c8c41d2409559fd46a3d50b9ada84

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +3 -3Ignore whitespace
src/command-line.js+3 -3
@@ -138,15 +138,15 @@ export class CommandLineParser {
138138 describe: 'Disables CSRF protection - NOT RECOMMENDED',
139139 }).option('ssl', {
140140 type: 'boolean',
141141 default: falsenull,
142142 describe: 'Enables SSL',
143143 }).option('certPath', {
144144 type: 'string',
145145 default: 'certs/cert.pem'null,
146146 describe: 'Path to SSL certificate file',
147147 }).option('keyPath', {
148148 type: 'string',
149149 default: 'certs/privkey.pem'null,
150150 describe: 'Path to SSL private key file',
151151 }).option('whitelist', {
152152 type: 'boolean',