thelounge/config.js

127 lines
1.7 KiB
JavaScript
Raw Normal View History

2014-09-13 18:41:11 +02:00
module.exports = {
2014-09-14 19:50:00 +02:00
//
// Set the server mode.
// Public servers does not require authentication.
//
// Set to 'false' to enable users.
//
// @type boolean
// @default false
2014-09-15 23:54:01 +02:00
//
2014-09-13 18:41:11 +02:00
public: true,
2014-09-15 23:54:01 +02:00
2014-09-14 19:50:00 +02:00
//
// Allow connections from this host.
//
// @type string
// @default "0.0.0.0"
//
2014-09-13 18:41:11 +02:00
host: "0.0.0.0",
2014-09-15 23:54:01 +02:00
2014-09-14 19:50:00 +02: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 18:41:11 +02:00
theme: "themes/example.css",
2014-09-14 19:50:00 +02:00
//
// Override home directory.
// Leaving this field empty will default to '~/.shout/'.
//
// @type string
// @default ""
//
2014-09-13 18:41:11 +02:00
home: "",
2014-09-14 19:50:00 +02:00
//
// Enable debug mode.
// This is only useful for development.
//
2014-09-16 19:33:15 +02:00
// @type boolean
2014-09-14 19:50:00 +02:00
// @default false
//
2014-09-15 23:54:01 +02:00
debug: false,
//
// Default values for the 'Connect' form.
//
// @type object
// @default {}
//
defaults: {
//
// Name
//
// @type string
// @default "Freenode"
//
name: "Freenode",
//
// Host
//
// @type string
// @default "irc.freenode.org"
//
host: "irc.freenode.org",
//
// Port
//
// @type int
// @default 6697
//
port: 6697,
//
// Password
//
// @type string
// @default ""
//
password: "",
//
// Enable TLS/SSL
//
// @type boolean
// @default true
//
tls: true,
//
// Nick
//
// @type string
// @default "shout-user"
//
nick: "shout-user",
//
// Real Name
//
// @type string
// @default "Shout User"
//
realname: "Shout User",
//
// Channels
//
// @type string
// @default "#foo, #shout-irc"
//
join: "#foo, #shout-irc"
}
2014-09-13 18:41:11 +02:00
};