This commit is contained in:
AJ ONeal 2016-10-07 13:30:11 -06:00
commit 1b988ddd91
1 changed files with 5 additions and 5 deletions

View File

@ -203,7 +203,7 @@ function run() {
var tls = require('tls');
// letsencrypt
var cert = require('localhost.daplie.com-certificates').merge({});
var httpsOptions = require('localhost.daplie.com-certificates').merge({});
var secureContext;
var opts = {
@ -211,10 +211,10 @@ function run() {
, debug: argv.debug
, email: argv.email
, httpsOptions: {
key: cert.key
, cert: cert.cert
//, ca: cert.ca
}
key: httpsOptions.key
, cert: httpsOptions.cert
//, ca: httpsOptions.ca
}
, argv: argv
};
var peerCa;