55 lines
826 B
JavaScript
55 lines
826 B
JavaScript
module.exports = {
|
|
//
|
|
// Set the server mode.
|
|
// Public servers does not require authentication.
|
|
//
|
|
// Set to 'false' to enable users.
|
|
//
|
|
// @type boolean
|
|
// @default false
|
|
//
|
|
public: true,
|
|
|
|
//
|
|
// Allow connections from this host.
|
|
//
|
|
// @type string
|
|
// @default "0.0.0.0"
|
|
//
|
|
host: "0.0.0.0",
|
|
|
|
//
|
|
// Set the port to listen on.
|
|
//
|
|
// @type int
|
|
// @default 9000
|
|
//
|
|
port: 9000,
|
|
|
|
//
|
|
// Set the default theme.
|
|
//
|
|
// @type string
|
|
// @default "themes/example.css"
|
|
//
|
|
theme: "themes/example.css",
|
|
|
|
//
|
|
// Override home directory.
|
|
// Leaving this field empty will default to '~/.shout/'.
|
|
//
|
|
// @type string
|
|
// @default ""
|
|
//
|
|
home: "",
|
|
|
|
//
|
|
// Enable debug mode.
|
|
// This is only useful for development.
|
|
//
|
|
// @type string
|
|
// @default false
|
|
//
|
|
debug: false
|
|
};
|