diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-09 22:41:05 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-09 22:41:05 +0000 |
commit | 6c8961f569b779940f5ac66bbf3b8b72e4d1bf8a (patch) | |
tree | 14fc3522f13579f8d0073c873e28232bea296618 /conf | |
parent | 67b53b588e0698bde9f5a3cf3bd7ff6a66838043 (diff) |
Update example configs for SSL changes [dKingston]
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11815 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'conf')
-rw-r--r-- | conf/inspircd.conf.example | 2 | ||||
-rw-r--r-- | conf/links.conf.example | 17 | ||||
-rw-r--r-- | conf/modules.conf.example | 4 |
3 files changed, 14 insertions, 9 deletions
diff --git a/conf/inspircd.conf.example b/conf/inspircd.conf.example index 0b860bb81..cfdba6c25 100644 --- a/conf/inspircd.conf.example +++ b/conf/inspircd.conf.example @@ -159,7 +159,7 @@ # or m_ssl_gnutls for gnutls. <bind address="" port="7000,7001" type="servers"> -<bind address="1.2.3.4" port="7005" type="servers" transport="openssl"> +<bind address="1.2.3.4" port="7005" type="servers" ssl="openssl"> #-#-#-#-#-#-#-#-#-#- DIE/RESTART CONFIGURATION -#-#-#-#-#-#-#-#-#-#- diff --git a/conf/links.conf.example b/conf/links.conf.example index fa7d017e4..1b85d6d2b 100644 --- a/conf/links.conf.example +++ b/conf/links.conf.example @@ -49,14 +49,19 @@ # failover (see above). timeout="300" - # transport: If defined, this states extra modules that can be + # fingerprint: If defined, this option will force servers to be + # authenticated using SSL Fingerprints. For more information, + # see http://wiki.inspircd.org/SSL + #fingerprint="" + + # ssl: If defined, this states extra modules that can be # used in the connection. Options are: "openssl" and "gnutls" # for encryption (they are compatible with each other) and - # "zip" for compression. You must use the same (or a compa- - # tible) transport on both sides of the link. + # "ziplinks" for compression. You must use the same (or a + # compatible) transport on both sides of the link. # You will need to load the m_ssl_openssl.so module for openssl, - # m_ssl_gnutls.so for gnutls or m_ziplinks.so for zip. - transport="gnutls" + # m_ssl_gnutls.so for gnutls or m_ziplinks.so for ziplinks. + ssl="gnutls" # bind: Local IP address to bind to. bind="1.2.3.4" @@ -83,7 +88,7 @@ autoconnect="300" failover="hub.other.net" timeout="300" - transport="gnutls" + ssl="gnutls" bind="1.2.3.4" statshidden="no" hidden="no" diff --git a/conf/modules.conf.example b/conf/modules.conf.example index 4fb3ef80d..9bc9dca05 100644 --- a/conf/modules.conf.example +++ b/conf/modules.conf.example @@ -1761,8 +1761,8 @@ # #<module name="m_ziplink.so"> # -# To use this module, you must enable it as a transport type in your -# <link> tags or <bind> tags using the transport name 'zip'. +# To use this module, you must enable it as a ssl type in your +# <link> tags or <bind> tags using the ssl name 'ziplinks'. # See the documentation of <link> and <bind>, respectively. # |