diff --git a/lib/server.js b/lib/server.js index 252fd6cd0..fae045741 100644 --- a/lib/server.js +++ b/lib/server.js @@ -162,7 +162,8 @@ function Server(options) { passphrase: self.passphrase, rejectUnauthorized: options.rejectUnauthorized, requestCert: options.requestCert, - ciphers: options.ciphers + ciphers: options.ciphers, + secureOptions: options.secureOptions }); } else if (options.httpsServerOptions) { this.server = https.createServer(options.httpsServerOptions);