mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-05 04:07:23 +02:00
Bring in some doc updates from master
This commit is contained in:
commit
ddff36dba2
10 changed files with 139 additions and 43 deletions
|
@ -16,10 +16,11 @@ You then need to enable the SSH server in your `config.hjson`:
|
|||
{
|
||||
loginServers: {
|
||||
ssh: {
|
||||
enabled: true
|
||||
enabled: true
|
||||
port: 8889
|
||||
privateKeyPass: YOUR_PK_PASS
|
||||
}
|
||||
privateKeyPem: /path/to/ssh_private_key.pem
|
||||
privateKeyPass: YOUR_PK_PASS
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
|
|
@ -1,4 +1,25 @@
|
|||
---
|
||||
layout: page
|
||||
title: Telnet Server
|
||||
---
|
||||
---
|
||||
|
||||
Telnet is enabled by default on port `8888` in `config.hjson`:
|
||||
|
||||
```hjson
|
||||
{
|
||||
loginServers: {
|
||||
telnet: {
|
||||
enabled: true
|
||||
port: 8888
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Telnet Server Options
|
||||
|
||||
| Option | Description
|
||||
|---------------------|--------------------------------------------------------------------------------------|
|
||||
| `firstMenu` | First menu a telnet connected user is presented with
|
||||
| `enabled` | Enable/disable telnet server
|
||||
| `port` | Configure a custom port for the telnet server
|
||||
|
|
|
@ -21,7 +21,7 @@ There are a few things out of scope of this document:
|
|||
|
||||
## Setup
|
||||
|
||||
1. Enable the websocket in ENiGMA, by adding `webSocket` configuration to the `loginServers` block (create it if you
|
||||
1. Enable the websocket in ENiGMA, by adding `webSocket` configuration to the `loginServers` block in `config.hjson` (create it if you
|
||||
don't already have it defined).
|
||||
|
||||
````hjson
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue