From f0290c0fda8af1c0f082f82f5d74d1ac008c71fa Mon Sep 17 00:00:00 2001 From: xcps Date: Fri, 24 Jun 2016 19:47:17 -0400 Subject: [PATCH] WebIRC wiki --- Using-i2pd.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/Using-i2pd.md b/Using-i2pd.md index 547414e..cf3cd80 100644 --- a/Using-i2pd.md +++ b/Using-i2pd.md @@ -9,5 +9,31 @@ and many more. ## Browsing and hosting websites ## Using and hosting chat servers +# IRC +This is just a server tunnel for IRC, if your IRC server doesn't support WebIRC. Put it in ~/.i2pd/tunnels.conf + + [walker] + type = irc + host = 127.0.0.1 <--- IRC server address + port = 5555 <--- IRC server port + keys = walker-key.dat + +But if your IRC server supports WebIRC, for example, UnreadIRCd, put this into UnrealIRCd config: + + webirc { + mask 127.0.0.1; + password ; // no <> brackets around password! + }; + +And this in ~/.i2pd/tunnels.conf + + [walker] + type = irc + host = 127.0.0.1 + port = 5555 <--- UnrealIRCd listen port + keys = walker-key.dat + webircpassword = your_password <---- your WebIRC password + + ## File sharing \ No newline at end of file