remove comments from config.json, set default listen IP to 0.0.0.0
This commit is contained in:
parent
a8dfc5b36e
commit
ebbe5a6e17
1 changed files with 8 additions and 8 deletions
16
config.json
16
config.json
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"listen": {
|
"listen": {
|
||||||
"ip": "127.0.0.1",
|
"ip": "0.0.0.0",
|
||||||
"port": 2222
|
"port": 2222
|
||||||
},
|
},
|
||||||
"user": {
|
"user": {
|
||||||
|
@ -19,7 +19,7 @@
|
||||||
"cursorBlink": true,
|
"cursorBlink": true,
|
||||||
"scrollback": 10000,
|
"scrollback": 10000,
|
||||||
"tabStopWidth": 8,
|
"tabStopWidth": 8,
|
||||||
"bellStyle": "sound",
|
"bellStyle": "sound"
|
||||||
},
|
},
|
||||||
"header": {
|
"header": {
|
||||||
"text": null,
|
"text": null,
|
||||||
|
@ -48,12 +48,12 @@
|
||||||
"aes128-gcm@openssh.com",
|
"aes128-gcm@openssh.com",
|
||||||
"aes256-gcm",
|
"aes256-gcm",
|
||||||
"aes256-gcm@openssh.com",
|
"aes256-gcm@openssh.com",
|
||||||
"aes256-cbc" // for some legacy systems
|
"aes256-cbc"
|
||||||
],
|
],
|
||||||
"hmac": [
|
"hmac": [
|
||||||
"hmac-sha2-256",
|
"hmac-sha2-256",
|
||||||
"hmac-sha2-512",
|
"hmac-sha2-512",
|
||||||
"hmac-sha1" // for some legacy systems
|
"hmac-sha1"
|
||||||
],
|
],
|
||||||
"compress": [
|
"compress": [
|
||||||
"none",
|
"none",
|
||||||
|
@ -62,9 +62,9 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"serverlog": {
|
"serverlog": {
|
||||||
"client": false, // proof-of-concept to log commands from client to server
|
"client": false,
|
||||||
"server": false // not yet implemented
|
"server": false
|
||||||
},
|
},
|
||||||
"accesslog": false, // http style access logging to console.log
|
"accesslog": false,
|
||||||
"verify": false, // verification of host key hashes, see hostkeyhashes.json
|
"verify": false
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue