Fixes for calzoneman <3

This commit is contained in:
bush 2015-03-06 21:59:34 +00:00
parent f191e2a9c9
commit 6138d3b7ff
2 changed files with 3 additions and 2 deletions

View file

@ -44,7 +44,7 @@ var defaults = {
passphrase: "",
certfile: "localhost.cert",
cafile: "",
ciphers: "HIGH:!DSS:!aNULL@STRENGTH"
ciphers: "HIGH:!DSS:!aNULL@STRENGTH"
},
io: {
domain: "http://localhost",

View file

@ -73,7 +73,8 @@ var Server = function () {
cert: cert,
passphrase: Config.get("https.passphrase"),
ca: ca,
ciphers: Config.get("https.ciphers")
ciphers: Config.get("https.ciphers"),
honorCipherOrder: true
};
Config.get("listen").forEach(function (bind) {