diff options
author | Attila Molnar <attilamolnar@hush.com> | 2016-11-16 11:41:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-16 11:41:12 +0100 |
commit | 6ef79bcdc5b36a8adc6e077ec050aa6084f68854 (patch) | |
tree | f1c3932f5929e6eef1d43c1df91974512373c630 /docs/conf/inspircd.conf.example | |
parent | bf66b6dedd226b9967d876a3869b1766af38d596 (diff) | |
parent | 5280eb50a4baee14c2dfd0417185584eb76087d7 (diff) |
Merge pull request #1216 from SaberUK/master+tls
Update SSL config documentation for SSL profiles and m_ssl_mbedtls.
Diffstat (limited to 'docs/conf/inspircd.conf.example')
-rw-r--r-- | docs/conf/inspircd.conf.example | 29 |
1 files changed, 20 insertions, 9 deletions
diff --git a/docs/conf/inspircd.conf.example b/docs/conf/inspircd.conf.example index eb4c4ef74..7883ca6d3 100644 --- a/docs/conf/inspircd.conf.example +++ b/docs/conf/inspircd.conf.example @@ -152,10 +152,13 @@ # to this bind section. type="clients" - # ssl: If you want the port(s) in this bind tag to use SSL, set this - # to either "gnutls" or "openssl". The appropriate SSL module must be - # loaded for SSL to work. If you do not want the port(s) in this bind - # tag to support SSL, just remove or comment out this option. + # ssl: If you want the port(s) in this bind tag to use SSL, set this to + # the name of a custom <sslprofile> tag that you have defined or one + # of "openssl", "gnutls", "mbedtls" if you have not defined any. See the + # wiki page for the SSL module you are using for more details. + # + # You will need to load the ssl_openssl module for OpenSSL, ssl_gnutls + # for GnuTLS and ssl_mbedtls for mbedTLS. ssl="gnutls" # defer: When this is non-zero, connections will not be handed over to @@ -177,11 +180,19 @@ # module). #<bind address="" port="7002" type="clients" hook="websocket"> -# When linking servers, the OpenSSL and GnuTLS implementations are completely -# link-compatible and can be used alongside each other -# on each end of the link without any significant issues. -# Supported SSL types are: "openssl" and "gnutls". -# You must load the ssl_openssl module for OpenSSL or ssl_gnutls for GnuTLS. +# You can define a custom <sslprofile> tag which defines the SSL configuration +# for this listener. See the wiki page for the SSL module you are using for +# more details. +# +# Alternatively, you can use one of the default SSL profiles which are created +# when you have not defined any: +# "openssl" (requires the ssl_openssl module) +# "gnutls" (requires the ssl_gnutls module) +# "mbedtls" (requires the ssl_mbedtls module) +# +# When linking servers, the OpenSSL, GnuTLS, and mbedTLS implementations are +# completely link-compatible and can be used alongside each other on each end +# of the link without any significant issues. <bind address="" port="7000,7001" type="servers"> <bind address="1.2.3.4" port="7005" type="servers" ssl="openssl"> |