aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-03-10 04:53:30 +0000
committerGravatar Sadie Powell2021-03-10 04:53:30 +0000
commitae997d094597251ec0ec9c5931c97b4db49a31d1 (patch)
tree8bbf2c9346800da792d442ec7f8b6708274e7e06 /docs
parentMerge branch 'insp3' into master. (diff)
parentRename `<bind:ssl>` to `<bind:sslprofile>`. (diff)
Merge branch 'insp3' into master.
Diffstat (limited to 'docs')
-rw-r--r--docs/conf/inspircd.conf.example4
-rw-r--r--docs/conf/links.conf.example8
-rw-r--r--docs/conf/modules.conf.example2
3 files changed, 7 insertions, 7 deletions
diff --git a/docs/conf/inspircd.conf.example b/docs/conf/inspircd.conf.example
index a0a71cfd6..81052b12d 100644
--- a/docs/conf/inspircd.conf.example
+++ b/docs/conf/inspircd.conf.example
@@ -132,7 +132,7 @@
# to this bind section.
type="clients"
- # ssl: If you want the port(s) in this bind tag to use TLS (SSL), set this
+ # sslprofile: If you want the port(s) in this bind tag to use TLS (SSL), set this
# to the name of a custom <sslprofile> tag that you have defined. See the
# docs page for the TLS (SSL) module you are using for more details:
#
@@ -142,7 +142,7 @@
#
# You will need to load the ssl_openssl module for OpenSSL, ssl_gnutls
# for GnuTLS and ssl_mbedtls for mbedTLS.
- ssl="Clients"
+ sslprofile="Clients"
# defer: When this is non-zero, connections will not be handed over to
# the daemon from the operating system before data is ready.
diff --git a/docs/conf/links.conf.example b/docs/conf/links.conf.example
index cecbcd1f3..f9edf1138 100644
--- a/docs/conf/links.conf.example
+++ b/docs/conf/links.conf.example
@@ -10,7 +10,7 @@
<bind address="1.2.3.4"
port="7005"
type="servers"
- ssl="Servers">
+ sslprofile="Servers">
# Plaintext listener that binds on a TCP/IP endpoint:
<bind address=""
@@ -56,7 +56,7 @@
# failover (see above).
timeout="5m"
- # ssl: If defined, this states the TLS (SSL) profile that will be used
+ # sslprofile: If defined, this states the TLS (SSL) profile that will be used
# when making an outbound connection to the server. See the docs page for
# the TLS (SSL) module you are using for more details:
#
@@ -67,7 +67,7 @@
# You will need to load the ssl_openssl module for OpenSSL, ssl_gnutls
# for GnuTLS and ssl_mbedtls for mbedTLS. The server port that you
# connect to must be capable of accepting this type of connection.
- ssl="Servers"
+ sslprofile="Servers"
# fingerprint: If defined, this option will force servers to be
# authenticated using TLS (SSL) certificate fingerprints. See
@@ -100,7 +100,7 @@
port="7000"
allowmask="203.0.113.0/24 127.0.0.0/8 2001:db8::/32"
timeout="5m"
- ssl="Servers"
+ sslprofile="Servers"
bind="1.2.3.4"
statshidden="no"
hidden="no"
diff --git a/docs/conf/modules.conf.example b/docs/conf/modules.conf.example
index 47f846a83..857c47b12 100644
--- a/docs/conf/modules.conf.example
+++ b/docs/conf/modules.conf.example
@@ -1070,7 +1070,7 @@
# a <bind> tag with type "httpd", and load at least one of the other
# httpd_* modules to provide pages to display.
# <bind address="127.0.0.1" port="8067" type="httpd">
-# <bind address="127.0.0.1" port="8097" type="httpd" ssl="gnutls">
+# <bind address="127.0.0.1" port="8097" type="httpd" sslprofile="Clients">
#
# You can adjust the timeout for HTTP connections below. All HTTP
# connections will be closed after (roughly) this time period.