chore: pull changelog and readme from master

This commit is contained in:
Bill Church 2020-03-14 11:08:28 -04:00
parent 152ac1e898
commit d61aec3862
2 changed files with 6 additions and 0 deletions

View file

@ -1,4 +1,8 @@
# Change Log
### 0.2.10 [TBD]
### Added
- Add configuration option to restrict connections to specified subnets thanks to @Mierdin
### 0.2.9 [2019-06-13]
### Changes
- Missing require('fs') in `server/app.js` See issue [#135](../../issues/135)

View file

@ -111,6 +111,8 @@ docker run --name webssh2 -d -p 2222:2222 -v `pwd`/app/config.json:/usr/src/conf
* **ssh.keepaliveCountMax** - _integer_ - How many consecutive, unanswered SSH-level keepalive packets that can be sent to the server before disconnection (similar to OpenSSH's ServerAliveCountMax config option). **Default:** 10.
* **allowedSubnets** - _array_ - A list of subnets that the server is allowed to connect to via SSH. An empty array means all subnets are permitted; no restriction. **Default:** empty array.
* **terminal.cursorBlink** - _boolean_ - Cursor blinks (true), does not (false) **Default:** true.
* **terminal.scrollback** - _integer_ - Lines in the scrollback buffer. **Default:** 10000.