From 2e04824ee16b35b6e1fbc2cbc404ba3e90352319 Mon Sep 17 00:00:00 2001 From: Jay Berlin Date: Thu, 7 Aug 2014 16:19:15 -0700 Subject: [PATCH] fix(web-server): #581 HTTPS Support for Karma Server Better default for config.cert Closes #581 --- lib/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config.js b/lib/config.js index 6d18b6865..5fdcb22cf 100644 --- a/lib/config.js +++ b/lib/config.js @@ -212,7 +212,7 @@ var Config = function() { this.protocol = constant.DEFAULT_PROTOCOL; this.port = constant.DEFAULT_PORT; this.hostname = constant.DEFAULT_HOSTNAME; - this.cert = {type: 'one-time', key: '', cert: ''}; + this.cert = {}; this.basePath = ''; this.files = []; this.exclude = [];