From 4092ecd2b23dc4180a48feebb66a6c4461d10111 Mon Sep 17 00:00:00 2001 From: Melroy van den Berg Date: Fri, 27 Oct 2017 17:12:45 +0200 Subject: [PATCH] Show it's possible to change the telnet default port In my case the default port (8888) was already in use. However, it was very hard to know (more guessing) the port change in possible via telnet: { port: xxxx }. --- docs/index.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/docs/index.md b/docs/index.md index 1147c578..9fbb0cee 100644 --- a/docs/index.md +++ b/docs/index.md @@ -77,9 +77,12 @@ Below is an _example_ configuration. It is recommended that you at least **start loginServers: { ssh: { - privateKeyPass: YOUR_PK_PASS - enabled: true /* set to false to disable the SSH server */ - } + privateKeyPass: YOUR_PK_PASS + enabled: true /* set to false to disable the SSH server */ + } + telnet: { + port: 8888 + } } messageConferences: { @@ -87,15 +90,14 @@ Below is an _example_ configuration. It is recommended that you at least **start name: Local desc: Local Discussions default: true - - areas: { - local_music: { + areas: { + local_music: { name: Music Discussion desc: Music, bands, etc. default: true + } } - } - } + } } } ```