diff options
-rw-r--r-- | doc/reference.conf | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/doc/reference.conf b/doc/reference.conf index 19b1f0c..afef59b 100644 --- a/doc/reference.conf +++ b/doc/reference.conf @@ -73,13 +73,13 @@ serverinfo { * vhost: the IP to bind to when we connect outward to ipv4 servers. * This should be an ipv4 IP only, or "*" for INADDR_ANY. */ - #vhost = "192.169.0.1"; +# vhost = "192.169.0.1"; /* * vhost6: the IP to bind to when we connect outward to ipv6 servers. * This should be an ipv6 IP only, or "*" for INADDR_ANY. */ - #vhost6 = "3ffe:80e8:546::2"; +# vhost6 = "3ffe:80e8:546::2"; /* max_clients: the maximum number of clients allowed to connect. */ max_clients = 512; @@ -110,7 +110,7 @@ serverinfo { * chmod 0600 rsa.key * chmod 0644 rsa.pub */ - #rsa_private_key_file = "/usr/local/ircd/etc/rsa.key"; +# rsa_private_key_file = "/usr/local/ircd/etc/rsa.key"; /* * ssl_certificate_file: the path to the file containing our @@ -132,7 +132,7 @@ serverinfo { * Common Name: irc.someirc.net * E-mail: you@domain.com */ - #ssl_certificate_file = "/usr/local/ircd/etc/cert.pem"; +# ssl_certificate_file = "/usr/local/ircd/etc/cert.pem"; /* * ssl_dh_param_file: @@ -149,7 +149,7 @@ serverinfo { * regarding specific OpenSSL dhparam command-line options * can be found in the OpenSSL manual. */ - #ssl_dh_param_file = "/usr/local/ircd/etc/dhparam.pem"; +# ssl_dh_param_file = "/usr/local/ircd/etc/dhparam.pem"; /* * ssl_cipher_list: @@ -167,7 +167,7 @@ serverinfo { * Multiple ciphers are separated by colons. The order of preference is * from left to right. */ - #ssl_cipher_list = "DHE-RSA-AES256-SHA:AES256-SHA"; +# ssl_cipher_list = "DHE-RSA-AES256-SHA:AES256-SHA"; /* * ssl_server_method: @@ -177,8 +177,8 @@ serverinfo { * outgoing (client method) SSL/TLS connections. * This can be either sslv3 for SSLv3, and/or tlsv1 for TLSv1. */ - #ssl_server_method = tlsv1, sslv3; - #ssl_client_method = tlsv1; +# ssl_server_method = tlsv1, sslv3; +# ssl_client_method = tlsv1; }; /* @@ -488,7 +488,7 @@ operator { * +y - spy - See LINKS, STATS, TRACE notices etc. * +z - operwall - See oper generated WALLOPS */ -# umodes = locops, servnotice, operwall, wallop; + umodes = locops, servnotice, operwall, wallop; /* * privileges: controls the activities and commands an oper is @@ -597,7 +597,7 @@ connect { * Multiple ciphers are separated by colons. The order of preference * is from left to right. */ - #ssl_cipher_list = "DHE-RSA-AES256-SHA:AES256-SHA"; +# ssl_cipher_list = "DHE-RSA-AES256-SHA:AES256-SHA"; /* * autoconn - controls whether we autoconnect to this server or not, @@ -1195,7 +1195,7 @@ modules { path = "/usr/local/ircd/lib/ircd-hybrid/modules/autoload"; /* module: the name of a module to load on startup/rehash. */ - #module = "some_module.la"; +# module = "some_module.la"; }; /* @@ -1207,43 +1207,43 @@ log { file { type = oper; - name = "/home/ircd/var/log/oper.log"; + name = "/usr/local/ircd/var/log/oper.log"; size = unlimited; }; file { type = user; - name = "/home/ircd/var/log/user.log"; + name = "/usr/local/ircd/var/log/user.log"; size = 50 megabytes; }; file { type = kill; - name = "/home/ircd/var/log/kill.log"; + name = "/usr/local/ircd/var/log/kill.log"; size = 50 megabytes; }; file { type = kline; - name = "/home/ircd/var/log/kline.log"; + name = "/usr/local/ircd/var/log/kline.log"; size = 50 megabytes; }; file { type = dline; - name = "/home/ircd/var/log/dline.log"; + name = "/usr/local/ircd/var/log/dline.log"; size = 50 megabytes; }; file { type = gline; - name = "/home/ircd/var/log/gline.log"; + name = "/usr/local/ircd/var/log/gline.log"; size = 50 megabytes; }; file { type = debug; - name = "/home/ircd/var/log/debug.log"; + name = "/usr/local/ircd/var/log/debug.log"; size = 50 megabytes; }; }; |