diff options
Diffstat (limited to 'doc/it/weechat_user.it.adoc')
-rw-r--r-- | doc/it/weechat_user.it.adoc | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/it/weechat_user.it.adoc b/doc/it/weechat_user.it.adoc index 4269318b6..db66cbdfa 100644 --- a/doc/it/weechat_user.it.adoc +++ b/doc/it/weechat_user.it.adoc @@ -4656,21 +4656,21 @@ for example: /set relay.network.totp_secret "${sec.data.relay_totp}" ---- -[[relay_ssl]] -=== SSL +[[relay_tls]] +=== TLS -È possibile usare SSL creando un certificato e una chiave privata, e usando il -prefisso "ssl." nel nome del protocollo. +È possibile usare TLS creando un certificato e una chiave privata, e usando il +prefisso "tls." nel nome del protocollo. // TRANSLATION MISSING The default path to certificate/key is defined by option -<<option_relay.network.ssl_cert_key,relay.network.ssl_cert_key>>. +<<option_relay.network.tls_cert_key,relay.network.tls_cert_key>>. È possibile creare un certificato e una chiave privata con i seguenti comandi: ---- -$ mkdir -p ~/.config/weechat/ssl -$ cd ~/.config/weechat/ssl +$ mkdir -p ~/.config/weechat/tls +$ cd ~/.config/weechat/tls $ openssl req -nodes -newkey rsa:2048 -keyout relay.pem -x509 -days 365 -out relay.pem ---- @@ -4683,7 +4683,7 @@ Se WeeChat è già in esecuzione, è possibile ricaricare il certificato e la chiave privata con il comando: ---- -/relay sslcertkey +/relay tlscertkey ---- // TRANSLATION MISSING @@ -4702,13 +4702,13 @@ server in the IRC "PASS" command, with this format (see example below): PASS server:miapass ---- -Example: IRC proxy with SSL for any server (client will choose): +Example: IRC proxy with TLS for any server (client will choose): ---- -/relay add ssl.irc 8000 +/relay add tls.irc 8000 ---- -Example: IRC proxy without SSL only for server "libera": +Example: IRC proxy without TLS only for server "libera": ---- /relay add irc.libera 8000 |