Browse Source

allow ciphers to be configurable

activeAddress
Matias Alejo Garcia 8 years ago
parent
commit
a6846b5b2a
No known key found for this signature in database GPG Key ID: 2470DB551277AB3
  1. 4
      bws.js

4
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) {

Loading…
Cancel
Save