
- `config.reauth` was not respected if initial auth presented was incorrect, regardless of `reauth` setting in `config.json` reauth would always be attempted. fixes #117 - **BREAKING** moved app files to /app, this may be a breaking change - Updated dockerfile for new app path - Updated app dependancies - xterm v3.8.0 - https://github.com/xtermjs/xterm.js/releases/tag/3.8.0 - basic-auth v2.0.1 - https://github.com/jshttp/basic-auth/releases/tag/v2.0.1 - express v4.16.4 - https://github.com/expressjs/express/releases/tag/4.16.4 - validator v10.9.0 - https://github.com/chriso/validator.js/releases/tag/10.9.0 - Updated dev dependancies - snazzy v8.0.0 - standard v12.0.1 - uglifyjs-webpack-plugin v2.0.1 - ajv v6.5.5 - copy-webpack-plugin v4.6.0 - css-loader v1.0.1 - nodemon v1.18.6 - postcss-discard-comments v4.0.1 - snyk v1.108.2 - url-loader v1.1.2 - webpack v4.25.1 - webpack-cli v3.1.2
71 lines
1.3 KiB
JSON
71 lines
1.3 KiB
JSON
{
|
|
"listen": {
|
|
"ip": "0.0.0.0",
|
|
"port": 2222
|
|
},
|
|
"user": {
|
|
"name": null,
|
|
"password": null
|
|
},
|
|
"ssh": {
|
|
"host": null,
|
|
"port": 22,
|
|
"term": "xterm-color",
|
|
"readyTimeout": 20000,
|
|
"keepaliveInterval": 120000,
|
|
"keepaliveCountMax": 10
|
|
},
|
|
"terminal": {
|
|
"cursorBlink": true,
|
|
"scrollback": 10000,
|
|
"tabStopWidth": 8,
|
|
"bellStyle": "sound"
|
|
},
|
|
"header": {
|
|
"text": null,
|
|
"background": "green"
|
|
},
|
|
"session": {
|
|
"name": "WebSSH2",
|
|
"secret": "mysecret"
|
|
},
|
|
"options": {
|
|
"challengeButton": true,
|
|
"allowreauth": true
|
|
},
|
|
"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
|
|
}
|