We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9215058 + 092ceee commit dede94aCopy full SHA for dede94a
lib/cli.js
@@ -131,7 +131,8 @@ function afterConfigLoad() {
131
secureProtocol: 'SSLv23_method', // disable insecure SSLv2 and SSLv3
132
secureOptions: constants.SSL_OP_NO_SSLv2 | constants.SSL_OP_NO_SSLv3,
133
key: fs.readFileSync(config.https.key),
134
- cert: fs.readFileSync(config.https.cert)
+ cert: fs.readFileSync(config.https.cert),
135
+ ca: fs.readFileSync(config.https.ca)
136
}, app)
137
} catch (err) { // catch errors related to certificate loading
138
logger.logger.fatal({ err: err }, 'cannot create server: @{err.message}')
0 commit comments