Fix default values for SSL command line
| @@ -138,15 +138,15 @@ export class CommandLineParser { | ||
| 138 | 138 | describe: 'Disables CSRF protection - NOT RECOMMENDED', |
| 139 | 139 | }).option('ssl', { |
| 140 | 140 | type: 'boolean', |
| 141 | 141 | default: falsenull, |
| 142 | 142 | describe: 'Enables SSL', |
| 143 | 143 | }).option('certPath', { |
| 144 | 144 | type: 'string', |
| 145 | 145 | default: 'certs/cert.pem'null, |
| 146 | 146 | describe: 'Path to SSL certificate file', |
| 147 | 147 | }).option('keyPath', { |
| 148 | 148 | type: 'string', |
| 149 | 149 | default: 'certs/privkey.pem'null, |
| 150 | 150 | describe: 'Path to SSL private key file', |
| 151 | 151 | }).option('whitelist', { |
| 152 | 152 | type: 'boolean', |