summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--data/example.conf25
1 files changed, 14 insertions, 11 deletions
diff --git a/data/example.conf b/data/example.conf
index 4309b72b6..9f86004db 100644
--- a/data/example.conf
+++ b/data/example.conf
@@ -137,19 +137,22 @@ define
* 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;
+ * listen {
+ * ip 127.0.0.1;
+ * port 7000;
+ * options {
+ * serversonly;
+ * };
+ * };
+ *
+ * link services.localhost.net {
+ * incoming {
+ * mask *@127.0.0.1;
+ * };
+ * password "mypassword";
+ * class servers;
* };
* ulines { services.localhost.net; };
- * listen 127.0.0.1:7000;
*/
uplink
{