* Fix quickstart config.hjson example
* Fix minor log issue in bbs.js @ error when parsing config/etc.
This commit is contained in:
parent
91279464f7
commit
38a96f53da
|
@ -78,7 +78,7 @@ function bbsMain() {
|
|||
],
|
||||
function complete(err) {
|
||||
if(err) {
|
||||
logger.log.error(err);
|
||||
console.error('Error initializing: ' + util.inspect(err));
|
||||
}
|
||||
}
|
||||
);
|
||||
|
|
|
@ -44,18 +44,19 @@ openssl genrsa -des3 -out ./misc/ssh_private_key.pem 2048
|
|||
The main system configuration is handled via `~/.config/enigma-bbs/config.hjson`. This is a [HJSON](http://hjson.org/) file (compiliant JSON is also OK). See [Configuration](config.md) for more information.
|
||||
|
||||
```hjson
|
||||
general: {
|
||||
{
|
||||
general: {
|
||||
boardName: Super Awesome BBS
|
||||
}
|
||||
}
|
||||
|
||||
servers: {
|
||||
servers: {
|
||||
ssh: {
|
||||
privateKeyPass: YOUR_PK_PASS
|
||||
enabled: true /* set to false to disable the SSH server */
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
messageConferences: {
|
||||
messageConferences: {
|
||||
local_general: {
|
||||
name: Local
|
||||
desc: Local Discussions
|
||||
|
@ -68,6 +69,8 @@ messageConferences: {
|
|||
default: true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue