This commit is contained in:
Bryan Ashby 2018-11-09 19:02:07 -07:00
parent 93305d44fc
commit 97e2d103e2
2 changed files with 14 additions and 1 deletions

View File

@ -40,9 +40,11 @@
}
logging: {
//
// By default, the system will rotate logs.
// Remember you can pipe logs through bunyan to pretty-print:
// > tail -F enigma/logs/enigma-bbs.log | enigma/node_modules/bunyan/bin/bunyan
//
rotatingFile: {
// If you're having trouble, try setting this to "trace"
level: XXXXX
@ -77,6 +79,7 @@
// Archive files and related
archives: {
//
// External utilities used for import & upload processing archives such
// as .zip, .rar, .arj, etc.
//
@ -84,6 +87,7 @@
// formats that a BBS may encounter!
//
// See config.js for additional configuration
//
archivers: {
//
// Each key in the "archivers" configuration block represents a specific
@ -96,4 +100,13 @@
//
}
}
users: {
//
// ENiGMA½ utilizes user groups similar to Windows and *nix. Built in groups
// include "users" (for regular users) and "sysops" for +ops. You can add other
// groups to the system as well by adding a 'groups' key in this section:
// groups: [ "leet", "lamerz" ]
//
}
}