Matias Alejo Garcia
8 years ago
No known key found for this signature in database
GPG Key ID: 2470DB551277AB3
1 changed files with
4 additions and
0 deletions
-
bws.js
|
|
@ -27,6 +27,10 @@ var serverOpts = {}; |
|
|
|
if (config.https) { |
|
|
|
serverOpts.key = fs.readFileSync(config.privateKeyFile || './ssl/privatekey.pem'); |
|
|
|
serverOpts.cert = fs.readFileSync(config.certificateFile || './ssl/certificate.pem'); |
|
|
|
if (config.ciphers) { |
|
|
|
serverOpts.ciphers = config.ciphers; |
|
|
|
serverOpts.honorCipherOrder = true; |
|
|
|
}; |
|
|
|
|
|
|
|
// This sets the intermediate CA certs only if they have all been designated in the config.js
|
|
|
|
if (config.CAinter1 && config.CAinter2 && config.CAroot) { |
|
|
|