Browse Source

Merge pull request #41 from rany2/patch-1

Fix mask for anon irc server
pull/42/head
orignal 3 years ago committed by GitHub
parent
commit
5bbb7f7083
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 22
      docs/tutorials/irc.md

22
docs/tutorials/irc.md

@ -32,20 +32,24 @@ Restart i2pd, then connect to irc://127.0.0.1:6669 with your IRC client.
Simplest case, if your server does not support WebIRC, add this to ~/.i2pd/tunnels.conf: Simplest case, if your server does not support WebIRC, add this to ~/.i2pd/tunnels.conf:
[anon-chatserver] ```
type = irc [anon-chatserver]
host = 127.0.0.1 type = irc
port = 5555 host = 127.0.0.1
keys = chatserver-key.dat port = 5555
keys = chatserver-key.dat
```
And that is it. And that is it.
Alternatively, if your IRC server supports WebIRC, for example, UnreadIRCd, put this into UnrealIRCd config: Alternatively, if your IRC server supports WebIRC, for example, UnreadIRCd, put this into UnrealIRCd config:
webirc { ```
mask 127.0.0.1; webirc {
password your_password; mask 127.*.*.*;
}; password your_password;
};
```
Also change line: Also change line:

Loading…
Cancel
Save