Enabled disabling of openssl cipher suits. RC4 disabled by default.
This commit is contained in:
parent
9b5d38e6c8
commit
a9a77147be
3 changed files with 5 additions and 2 deletions
|
|
@ -43,7 +43,8 @@ var defaults = {
|
|||
keyfile: "localhost.key",
|
||||
passphrase: "",
|
||||
certfile: "localhost.cert",
|
||||
cafile: ""
|
||||
cafile: "",
|
||||
ciphers: "ALL:!RC4"
|
||||
},
|
||||
io: {
|
||||
domain: "http://localhost",
|
||||
|
|
|
|||
|
|
@ -72,7 +72,8 @@ var Server = function () {
|
|||
key: key,
|
||||
cert: cert,
|
||||
passphrase: Config.get("https.passphrase"),
|
||||
ca: ca
|
||||
ca: ca,
|
||||
ciphers: Config.get("https.ciphers")
|
||||
};
|
||||
|
||||
Config.get("listen").forEach(function (bind) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue