mirror of
git://git.acid.vegas/unrealircd.git
synced 2024-11-14 12:06:41 +00:00
47 lines
1.0 KiB
Plaintext
47 lines
1.0 KiB
Plaintext
include "links.conf";
|
|
include "modules.conf";
|
|
include "snomasks.conf";
|
|
|
|
admin { ""; }
|
|
|
|
me { name "irc.supernets.org"; info "SuperNETs IRC Network"; sid 001; }
|
|
|
|
class servers { pingfreq 120; maxclients 10; sendq 1M; connfreq 30; }
|
|
|
|
listen { ip *; port REDACTED; options { serversonly; tls; } } # Links
|
|
listen { ip 127.0.0.1; port REDACTED; options { serversonly; } } # Anope
|
|
|
|
link services.supernets.org {
|
|
incoming { mask 127.0.0.1; port REDACTED; }
|
|
password "REDACTED";
|
|
class servers;
|
|
}
|
|
|
|
log {
|
|
source { error; fatal; warn; }
|
|
destination { file "ircd.log" { maxsize 5M; } }
|
|
}
|
|
|
|
log {
|
|
source { !debug; all; }
|
|
destination { channel "#syslog"; }
|
|
}
|
|
|
|
ulines { services.supernets.org; }
|
|
|
|
set {
|
|
gline-address "enterthevoid@supernets.org";
|
|
kline-address "enterthevoid@supernets.org";
|
|
network-name "SuperNETs";
|
|
default-server "irc.supernets.org";
|
|
services-server "services.supernets.org";
|
|
sasl-server "services.supernets.org";
|
|
help-channel "#superbowl";
|
|
cloak-method ip;
|
|
cloak-keys {
|
|
"REDACTED";
|
|
"REDACTED";
|
|
"REDACTED";
|
|
}
|
|
}
|