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
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width-device-width, inital-scale=1.0">
<title>0druid.cc - irc</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>irc.0druid.cc</h1>
<p><a href="/">homepage</a>. <a href="/git.html">git</a>. <a href="/irc.html">irc</a>.</p>
<p>my irc server. tls only, on 6697. it runs ergo, and it officially supports <a href="https://git.causal.agency/catgirl/about/">catgirl</a> (thats what i use).</p>
<p>its no-kyc: no email, no real name, no questions. just nick + password, then optionally a cert for passwordless login from catgirl.</p>
<p>connect with catgirl:</p>
<pre>catgirl -h irc.0druid.cc -p 6697</pre>
<p>first time, register your account (nick + password, no email needed):</p>
<pre>/msg NickServ REGISTER <nick> <password></pre>
<p>then you can log in with sasl. put this in ~/.config/catgirl/irc.0druid.cc:</p>
<pre>nick = <nick>
sasl-plain = <nick>:<password></pre>
<p>or, do it without a password at all: add your tls cert to your account. connect with your cert, log in once, then:</p>
<pre>/msg NickServ CERT ADD</pre>
<p>and switch to cert-only auth:</p>
<pre>nick = <nick>
sasl-external
cert = ~/.config/catgirl/cert.pem</pre>
<p>that cert + key is a self-signed tls client cert you make once:</p>
<pre>catgirl -g ~/.config/catgirl/cert.pem</pre>
<p>no logs of your messages or ip, no email, no ads. if you want an account just connect and register, i dont gate it.</p>
<p>oper (admin) is me. if somethings broken, <a href="mailto:r.ustydruid520@proton.me">email me</a>.</p>
</body>
</html>
|