Shuo/config.js

55 lines
826 B
JavaScript
Raw Normal View History

2014-09-13 16:41:11 +00:00
module.exports = {
2014-09-14 17:50:00 +00:00
//
// Set the server mode.
// Public servers does not require authentication.
//
// Set to 'false' to enable users.
//
// @type boolean
// @default false
//
2014-09-13 16:41:11 +00:00
public: true,
2014-09-14 17:50:00 +00:00
//
// Allow connections from this host.
//
// @type string
// @default "0.0.0.0"
//
2014-09-13 16:41:11 +00:00
host: "0.0.0.0",
2014-09-14 17:50:00 +00:00
//
// Set the port to listen on.
//
// @type int
// @default 9000
//
port: 9000,
//
// Set the default theme.
//
// @type string
// @default "themes/example.css"
//
2014-09-13 16:41:11 +00:00
theme: "themes/example.css",
2014-09-14 17:50:00 +00:00
//
// Override home directory.
// Leaving this field empty will default to '~/.shout/'.
//
// @type string
// @default ""
//
2014-09-13 16:41:11 +00:00
home: "",
2014-09-14 17:50:00 +00:00
//
// Enable debug mode.
// This is only useful for development.
//
// @type string
// @default false
//
debug: false
2014-09-13 16:41:11 +00:00
};