summaryrefslogtreecommitdiff
path: root/conf/inspircd.conf.example
diff options
context:
space:
mode:
authordanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-03-04 00:46:12 +0000
committerdanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-03-04 00:46:12 +0000
commit08d55d0b30a2d4ebdcbe7b15d957dc852fba75ff (patch)
tree994bde1dbc454c11fe44af620b33cd02327b7c40 /conf/inspircd.conf.example
parent2089dfce5734a21ccdbbe133cb8499e2168cd281 (diff)
More documentation to example configs [jdhore]
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11166 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'conf/inspircd.conf.example')
-rw-r--r--conf/inspircd.conf.example23
1 files changed, 23 insertions, 0 deletions
diff --git a/conf/inspircd.conf.example b/conf/inspircd.conf.example
index 1cfbeb40b..85796cfc5 100644
--- a/conf/inspircd.conf.example
+++ b/conf/inspircd.conf.example
@@ -75,6 +75,12 @@
# description: Server description. Spaces are allowed.
description="Waddle World"
+ # id: The SID to use for this server. This should not be uncommented
+ # unless there is a SID conflict. This must be three characters long.
+ # The first character must be a digit [0-9], the remaining two chars
+ # may be letters [A-Z] or digits.
+ #id="97K"
+
# network: Network name given on connect to clients.
# Should be the same on all servers on the network and
# not contain spaces.
@@ -199,6 +205,16 @@
<connect deny="3ffe::0/32">
<connect
+ # name: Name to use for this connect block. Mainly used for
+ # connect class inheriting.
+ name="secret"
+
+ # parent: This setting is to specify if this connect class
+ # inherits settings from any other. Put the other class' name
+ # in here to use it's settings. It will use all settings from
+ # the parent class unless any are changed in this class.
+ parent="main"
+
# allow: What IP addresses/hosts to allow for this block.
allow="196.12.*"
@@ -218,6 +234,10 @@
port="6667">
<connect
+ # name: Name to use for this connect block. Mainly used for
+ # connect class inheriting.
+ name="main"
+
# allow: What IP addresses/hosts to allow for this block.
allow="*"
@@ -247,6 +267,9 @@
# globalmax: Maximum global (network-wide) connections per IP.
globalmax="3"
+ # useident: Defines if users in this class must respond to a ident query or not.
+ useident="no"
+
# limit: How many users are allowed in this class
limit="5000"