address node v8 tls defaults change

This commit is contained in:
Josh Harvey 2017-12-13 16:27:31 +02:00
parent 3e8e846d95
commit 7e8a79bea2
3 changed files with 77 additions and 40 deletions

View file

@ -39,7 +39,8 @@ function runOnce () {
const httpsServerOptions = {
key: fs.readFileSync(options.keyPath),
cert: fs.readFileSync(options.certPath),
requestCert: true
requestCert: true,
rejectUnauthorized: false
}
const server = devMode