Formatting
This commit is contained in:
parent
571c8b7b64
commit
fd86293dbe
|
@ -6,11 +6,9 @@ title: Web Socket / Web Interface Server
|
||||||
The WebSocket Login Server provides **secure** (wss://) as well as non-secure (ws://) WebSocket login access. This is often combined with a browser based WebSocket client such as VTX or fTelnet.
|
The WebSocket Login Server provides **secure** (wss://) as well as non-secure (ws://) WebSocket login access. This is often combined with a browser based WebSocket client such as VTX or fTelnet.
|
||||||
|
|
||||||
# VTX Web Client
|
# VTX Web Client
|
||||||
ENiGMA supports the VTX websocket client for connecting to your BBS from a web page. Example usage can be found at
|
ENiGMA supports the VTX websocket client for connecting to your BBS from a web page. Example usage can be found at [Xibalba](https://xibalba.l33t.codes) and [fORCE9](https://bbs.force9.org/vtx/force9.html) amongst others.
|
||||||
[Xibalba](https://l33t.codes/vtx/xibalba.html) and [fORCE9](https://bbs.force9.org/vtx/force9.html).
|
|
||||||
|
|
||||||
## Before You Start
|
## Before You Start
|
||||||
|
|
||||||
There are a few things out of scope of this document:
|
There are a few things out of scope of this document:
|
||||||
|
|
||||||
- You'll need a web server for hosting the files - this can be anywhere, but it obviously makes sense to host it
|
- You'll need a web server for hosting the files - this can be anywhere, but it obviously makes sense to host it
|
||||||
|
@ -27,8 +25,8 @@ There are a few things out of scope of this document:
|
||||||
1. Enable the websocket in ENiGMA, by adding `webSocket` configuration to the `loginServers` block in `config.hjson` (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).
|
don't already have it defined).
|
||||||
|
|
||||||
````hjson
|
````hjson
|
||||||
loginServers: {
|
loginServers: {
|
||||||
webSocket : {
|
webSocket : {
|
||||||
ws: {
|
ws: {
|
||||||
// non-secure ws://
|
// non-secure ws://
|
||||||
|
@ -50,8 +48,8 @@ don't already have it defined).
|
||||||
// as secure
|
// as secure
|
||||||
proxied: true
|
proxied: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
````
|
````
|
||||||
|
|
||||||
2. Restart ENiGMA and check the logs to ensure the websocket service starts successfully, you'll see something like the
|
2. Restart ENiGMA and check the logs to ensure the websocket service starts successfully, you'll see something like the
|
||||||
following:
|
following:
|
||||||
|
|
Loading…
Reference in New Issue