X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=doc%2Fexample_silcd.conf.in;h=9820b2ba60540377dce226c570e07c12853e3c36;hb=d1e71f42379e8b5cd0748a7aeae8561b02cfe53d;hp=41426d40497cc96af54d9858257d251fc5784657;hpb=382d15d447b7a95390decfa783836ae4fe255b3d;p=silc.git diff --git a/doc/example_silcd.conf.in b/doc/example_silcd.conf.in index 41426d40..9820b2ba 100644 --- a/doc/example_silcd.conf.in +++ b/doc/example_silcd.conf.in @@ -48,8 +48,9 @@ General { # without FQDN cannot connect to the server. #require_reverse_lookup = true; - # Maximum number of incoming connections allowed to this server. - # If more attempt to connect they will be refused. + # Maximum number of connections server can handle. If you want + # to limit the number of incoming connections, define the + # connections_max in the ConnectionParams. connections_max = 1000; # Maximum number of incoming connections allowed per single host. @@ -157,6 +158,13 @@ General { #qos_bytes_limit = 2048; #qos_limit_sec = 0; #qos_limit_usec = 500000; + + # Limit on how many channels one client can join. Default is 50. + #channel_join_limit = 100; + + # Debug string. Debug string can be set to print debugging from + # the running server. The debug is redirected to stderr. + # debug_string = ""; }; # @@ -242,7 +250,8 @@ ServerInfo { # are redirected on the less important ones, thus setting a valid logging # file for "Info" will ensure logging for all channels, while setting # logging file for "Errors" will ensure logging for channels "Errors" -# and "Fatals" +# and "Fatals". If only, for example, "Info" is set then all logs go to +# that file (like in example below). # Logging { # Use timestamp in the logging files? (Usually it is a good idea, @@ -266,26 +275,26 @@ Logging { # Informational messages Info { File = "@LOGSDIR@/silcd.log"; - Size = "50k"; + Size = "100k"; }; # Warning messages - Warnings { - File = "@LOGSDIR@/silcd_warnings.log"; - Size = "50k"; - }; + #Warnings { + # File = "@LOGSDIR@/silcd_warnings.log"; + # Size = "50k"; + #}; # Error messages - Errors { - File = "@LOGSDIR@/silcd_errors.log"; - Size = "50k"; - }; + #Errors { + # File = "@LOGSDIR@/silcd_errors.log"; + # Size = "50k"; + #}; # Fatal messages - Fatals { - File = "@LOGSDIR@/silcd_fatals.log"; - Size = "50k"; - }; + #Fatals { + # File = "@LOGSDIR@/silcd_fatals.log"; + # Size = "50k"; + #}; }; # @@ -448,7 +457,8 @@ Admin { # If server connections are configured it means that this server is # router server. Normal servers must not configure server connections. # Thus, if this server is not router do not configure this section. If -# your server is router, this must be configured. +# your server is router, this must be configured. The Host (mandatory) +# specifies the remote server. # # The authentication data is specified by Passphrase and/or PublicKey. # If both are provided then both password and public key based authentication @@ -474,9 +484,9 @@ ServerConnection { # For normal servers only one entry maybe configured to this section. It # must be the router this server will be connected to. For router servers, # this section includes all configured router connections. The first -# configured connection is the primary route. The Host specifies the -# remote hostname or IP address. The Port specifies the remote port to -# connect when Initiator is true. When Initiator is false the Port +# configured connection is the primary route. The Host (mandatory) specifies +# the remote hostname or IP address. The Port specifies the remote port +# to connect when Initiator is true. When Initiator is false the Port # specifies the local port (listener port). # # The authentication data is specified by Passphrase and/or PublicKey.