
* Update config.json.sample (#253) * Update package.json * Update CI tools (#248) * chore: ci tools updates * ci tools updates * chore: update ci * update dev tools (#249) * chore: ci tools updates * ci tools updates * chore: update ci * build tools update * chore: udpate dev tools * Update config.json.sample fix: lost comma in config.json.sample Co-authored-by: Bill Church <billchurch@users.noreply.github.com> * build(deps): bump ws from 7.4.5 to 7.4.6 in /app (#251) * Update package.json * Update CI tools (#248) * chore: ci tools updates * ci tools updates * chore: update ci * update dev tools (#249) * chore: ci tools updates * ci tools updates * chore: update ci * build tools update * chore: udpate dev tools * build(deps): bump ws from 7.4.5 to 7.4.6 in /app Bumps [ws](https://github.com/websockets/ws) from 7.4.5 to 7.4.6. - [Release notes](https://github.com/websockets/ws/releases) - [Commits](https://github.com/websockets/ws/compare/7.4.5...7.4.6) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Bill Church <billchurch@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update config.json.sample (#253) * Update package.json * Update CI tools (#248) * chore: ci tools updates * ci tools updates * chore: update ci * update dev tools (#249) * chore: ci tools updates * ci tools updates * chore: update ci * build tools update * chore: udpate dev tools * Update config.json.sample fix: lost comma in config.json.sample Co-authored-by: Bill Church <billchurch@users.noreply.github.com> * build(deps): bump ws from 7.4.5 to 7.4.6 in /app (#251) * Update package.json * Update CI tools (#248) * chore: ci tools updates * ci tools updates * chore: update ci * update dev tools (#249) * chore: ci tools updates * ci tools updates * chore: update ci * build tools update * chore: udpate dev tools * build(deps): bump ws from 7.4.5 to 7.4.6 in /app Bumps [ws](https://github.com/websockets/ws) from 7.4.5 to 7.4.6. - [Release notes](https://github.com/websockets/ws/releases) - [Commits](https://github.com/websockets/ws/compare/7.4.5...7.4.6) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Bill Church <billchurch@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: James Yang <26634873@qq.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
80 lines
1.4 KiB
Text
80 lines
1.4 KiB
Text
{
|
|
"listen": {
|
|
"ip": "0.0.0.0",
|
|
"port": 2222
|
|
},
|
|
"http": {
|
|
"origins": ["*:*"]
|
|
},
|
|
"user": {
|
|
"name": null,
|
|
"password": null,
|
|
"privatekey": null,
|
|
"overridebasic": false
|
|
},
|
|
"ssh": {
|
|
"host": null,
|
|
"port": 22,
|
|
"localAddress": null,
|
|
"localPort": null,
|
|
"term": "xterm-color",
|
|
"readyTimeout": 20000,
|
|
"keepaliveInterval": 120000,
|
|
"keepaliveCountMax": 10,
|
|
"allowedSubnets": []
|
|
},
|
|
"terminal": {
|
|
"cursorBlink": true,
|
|
"scrollback": 10000,
|
|
"tabStopWidth": 8,
|
|
"bellStyle": "sound"
|
|
},
|
|
"header": {
|
|
"text": null,
|
|
"background": "green"
|
|
},
|
|
"session": {
|
|
"name": "WebSSH2",
|
|
"secret": "mysecret"
|
|
},
|
|
"options": {
|
|
"challengeButton": true,
|
|
"allowreauth": false
|
|
},
|
|
"algorithms": {
|
|
"kex": [
|
|
"ecdh-sha2-nistp256",
|
|
"ecdh-sha2-nistp384",
|
|
"ecdh-sha2-nistp521",
|
|
"diffie-hellman-group-exchange-sha256",
|
|
"diffie-hellman-group14-sha1"
|
|
],
|
|
"cipher": [
|
|
"aes128-ctr",
|
|
"aes192-ctr",
|
|
"aes256-ctr",
|
|
"aes128-gcm",
|
|
"aes128-gcm@openssh.com",
|
|
"aes256-gcm",
|
|
"aes256-gcm@openssh.com",
|
|
"aes256-cbc"
|
|
],
|
|
"hmac": [
|
|
"hmac-sha2-256",
|
|
"hmac-sha2-512",
|
|
"hmac-sha1"
|
|
],
|
|
"compress": [
|
|
"none",
|
|
"zlib@openssh.com",
|
|
"zlib"
|
|
]
|
|
},
|
|
"serverlog": {
|
|
"client": false,
|
|
"server": false
|
|
},
|
|
"accesslog": false,
|
|
"verify": false,
|
|
"safeShutdownDuration": 300
|
|
}
|