From ebbe5a6e17543d1816efc6f1f2d31f016f410e75 Mon Sep 17 00:00:00 2001 From: billchurch Date: Sat, 17 Feb 2018 15:24:42 -0500 Subject: [PATCH] remove comments from config.json, set default listen IP to 0.0.0.0 --- config.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/config.json b/config.json index c2da86e..917bab9 100644 --- a/config.json +++ b/config.json @@ -1,6 +1,6 @@ { "listen": { - "ip": "127.0.0.1", + "ip": "0.0.0.0", "port": 2222 }, "user": { @@ -19,7 +19,7 @@ "cursorBlink": true, "scrollback": 10000, "tabStopWidth": 8, - "bellStyle": "sound", + "bellStyle": "sound" }, "header": { "text": null, @@ -48,12 +48,12 @@ "aes128-gcm@openssh.com", "aes256-gcm", "aes256-gcm@openssh.com", - "aes256-cbc" // for some legacy systems + "aes256-cbc" ], "hmac": [ "hmac-sha2-256", "hmac-sha2-512", - "hmac-sha1" // for some legacy systems + "hmac-sha1" ], "compress": [ "none", @@ -62,9 +62,9 @@ ] }, "serverlog": { - "client": false, // proof-of-concept to log commands from client to server - "server": false // not yet implemented + "client": false, + "server": false }, - "accesslog": false, // http style access logging to console.log - "verify": false, // verification of host key hashes, see hostkeyhashes.json + "accesslog": false, + "verify": false }