-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpsyrcd.conf
36 lines (33 loc) · 958 Bytes
/
psyrcd.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
server {
name = "psyrcd-dev"
domain = "irc.psybernetics.org"
description = "I fought the lol, and. The lol won."
welcome = "Welcome to {}" // Formatted with server["name"].
link_key = "${PSYRCD_LINK_KEY}" // Populated from the environment.
ping_frequency = 60
max {
clients = 8192
idle_time = 120
nicklen = 12
channels = 200
topiclen = 512
}
}
oper {
/* Set the password to true to generate a random password, false to disable
* the oper system, a string of your choice or pipe at runtime:
* $ openssl rand -base64 32 | psyrcd --preload -f
*/
username = true
password = true
}
services {
nickserv {
enabled = false
database_uri = "sqlite:///var/opt/psyrcd/nickserv.db"
}
chanserv {
enabled = false
database_uri = "sqlite:////var/opt/psyrcd/chanserv.db"
}
}