1
0
mirror of https://github.com/anope/anope.git synced 2026-07-10 19:03:13 +02:00

Update INSTALL and place some example link configurations in example.conf

This commit is contained in:
Adam
2013-05-26 15:24:38 -04:00
parent 968ef349d6
commit f2dee1e1d6
2 changed files with 40 additions and 62 deletions
+32 -1
View File
@@ -128,6 +128,37 @@ define
* This section is used to set up Anope to connect to your IRC network.
* This section can be included multiple times, and Anope will attempt to
* connect to each server until it finally connects.
*
* Each uplink IRCd should have a corresponding configuration to allow Services
* to link to it.
*
* An example configuration for InspIRCd that is compatible with the below uplink
* and serverinfo configuration would look like:
*
* <link name="services.localhost.net"
* ipaddr="127.0.0.1"
* port="7000"
* sendpass="mypassword"
* recvpass="mypassword">
* <uline server="services.localhost.net" silent="yes">
* <bind address="127.0.0.1" port="7000" type="servers">
*
* An example configuration for UnrealIRCd that is compatible with the below uplink
* and serverinfo configuration would look like:
*
* link services.localhost.net
* {
* username *;
* hostname *;
* bind-ip "127.0.0.1";
* port 7000;
* hub *;
* password-connect "mypassword";
* password-receive "mypassword";
* class servers;
* };
* ulines { services.localhost.net; };
* listen 127.0.0.1:7000;
*/
uplink
{
@@ -157,7 +188,7 @@ uplink
*
* Refer to your IRCd documentation for how this is to be done.
*/
port = 6667
port = 7000
/*
* The password to send to the IRC server for authentication.