]> jfr.im git - solanum.git/blobdiff - doc/ircd.conf.example
Revert "remove MONITOR for now pending a complete rewrite"
[solanum.git] / doc / ircd.conf.example
index 5968e5fd7ada0b2881f1b29d2f8fb9618c188bd7..90ca6ac01a5acd52f36cb18480a05994ee7707da 100755 (executable)
@@ -1,4 +1,4 @@
-/* doc/example.conf - brief example configuration file
+/* doc/ircd.conf.example - brief example configuration file
  *
  * Copyright (C) 2000-2002 Hybrid Development Team
  * Copyright (C) 2002-2005 ircd-ratbox development team
@@ -48,7 +48,6 @@ serverinfo {
        sid = "42X";
        description = "charybdis test server";
        network_name = "StaticBox";
-       network_desc = "Your IRC network.";
        hub = yes;
 
        /* On multi-homed hosts you may need the following. These define
@@ -62,9 +61,14 @@ serverinfo {
        ssl_private_key = "etc/ssl.key";
 
        /* ssl_cert: certificate for our ssl server */
-       ssl_cert = "etc/ssl.cert";
+       ssl_cert = "etc/ssl.pem";
 
-       /* ssl_dh_params: DH parameters, generate with openssl dhparam -out dh.pem 1024 */
+       /* ssl_dh_params: DH parameters, generate with openssl dhparam -out dh.pem 2048
+        * In general, the DH parameters size should be the same as your key's size.
+        * However it has been reported that some clients have broken TLS implementations which may
+        * choke on keysizes larger than 2048-bit, so we would recommend using 2048-bit DH parameters
+        * for now if your keys are larger than 2048-bit.
+        */
        ssl_dh_params = "etc/dh.pem";
 
        /* ssld_count: number of ssld processes you want to start, if you
@@ -461,6 +465,14 @@ general {
        default_operstring = "is an IRC Operator";
        default_adminstring = "is a Server Administrator";
        servicestring = "is a Network Service";
+
+       /*
+        * Nick of the network's SASL agent. Used to check whether services are here,
+        * SASL credentials are only sent to its server. Needs to be a service.
+        *
+        * Defaults to SaslServ if unspecified.
+        */
+       sasl_service = "SaslServ";
        disable_fake_channels = no;
        tkline_expire_notices = no;
        default_floodcount = 10;