diff options
author | Sadie Powell <sadie@witchery.services> | 2021-03-10 03:43:56 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-03-10 04:23:11 +0000 |
commit | e0dc7691c4cff3a38bc12adf10b3709d8c4901ba (patch) | |
tree | c3073104aa156f67c2571b6deb1dca24a103f60c /docs | |
parent | 085777cf272cd74e44abec70c0a87003429e2fd3 (diff) |
Rename `<bind:ssl>` to `<bind:sslprofile>`.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/conf/inspircd.conf.example | 4 | ||||
-rw-r--r-- | docs/conf/links.conf.example | 4 | ||||
-rw-r--r-- | docs/conf/modules.conf.example | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/docs/conf/inspircd.conf.example b/docs/conf/inspircd.conf.example index cdfb6f3c2..f07f21cdd 100644 --- a/docs/conf/inspircd.conf.example +++ b/docs/conf/inspircd.conf.example @@ -141,7 +141,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: # @@ -151,7 +151,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 7ced7170e..19d770d35 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="" @@ -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 d236d6cb9..0b149775b 100644 --- a/docs/conf/modules.conf.example +++ b/docs/conf/modules.conf.example @@ -1119,7 +1119,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. |