mirror of
git://git.acid.vegas/unrealircd.git
synced 2024-11-15 04:26:41 +00:00
26 lines
960 B
Plaintext
26 lines
960 B
Plaintext
include "https://USERNAME:PASSWORD@HOSTNAME:PORT/badwords.conf";
|
|
include "https://USERNAME:PASSWORD@HOSTNAME:PORT/except.conf";
|
|
include "https://USERNAME:PASSWORD@HOSTNAME:PORT/ircd.conf";
|
|
include "https://USERNAME:PASSWORD@HOSTNAME:PORT/modules.conf";
|
|
include "https://USERNAME:PASSWORD@HOSTNAME:PORT/opers.conf";
|
|
include "https://USERNAME:PASSWORD@HOSTNAME:PORT/snomasks.conf";
|
|
include "https://USERNAME:PASSWORD@HOSTNAME:PORT/spamfilter.conf";
|
|
me { name "example.supernets.org"; info "SuperNETS IRC Network"; sid XXX; }
|
|
listen {
|
|
ip *;
|
|
port 6697;
|
|
options { clientsonly; tls; }
|
|
tls-options {
|
|
certificate "/etc/letsencrypt/live/irc.supernets.org/fullchain.pem";
|
|
key "/etc/letsencrypt/live/irc.supernets.org/privkey.pem";
|
|
}
|
|
}
|
|
listen {
|
|
ip *;
|
|
port 9000;
|
|
options { clientsonly; tls; }
|
|
tls-options {
|
|
certificate "/etc/letsencrypt/live/irc.supernets.org/fullchain.pem";
|
|
key "/etc/letsencrypt/live/irc.supernets.org/privkey.pem";
|
|
}
|
|
} |