diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-05-12 22:52:33 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-05-12 22:52:33 +0200 |
commit | 4d156ed8d76b9b8dcb155c94d4f55c3264aea8af (patch) | |
tree | 42ba21e35395c334a5131bb6c18ac0173c2560b2 /doc/de | |
parent | d1577b34dafbaeb019ca4c3c1e1b6304c9ca55c3 (diff) | |
download | weechat-4d156ed8d76b9b8dcb155c94d4f55c3264aea8af.zip |
doc: update chapter on relay unix domain sockets; add translations (user's guide)
Diffstat (limited to 'doc/de')
-rw-r--r-- | doc/de/weechat_user.de.adoc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/de/weechat_user.de.adoc b/doc/de/weechat_user.de.adoc index 6d76ae9da..439df866d 100644 --- a/doc/de/weechat_user.de.adoc +++ b/doc/de/weechat_user.de.adoc @@ -3270,6 +3270,28 @@ websocket = new WebSocket("ws://server.com:9000/weechat"); Der Port (im Beispiel: 9000) ist der Port der in der Relay Erweiterung angegeben wurde. Die URI muss immer auf "/weechat" enden (_irc_ und _weechat_ Protokoll). +// TRANSLATION MISSING +[[relay_unix_socket]] +==== UNIX domain sockets + +Using the protocol option "unix" with the `/relay add` command, you can listen +using any protocol on a UNIX domain socket at a given path. For example: + +---- +/relay add unix.weechat %h/relay_socket +---- + +This allows clients to connect using the weechat protocol to +_~/.weechat/relay_socket_. This is particularly useful to allow SSH forwarding +for relay clients, when other ports cannot be opened. Using OpenSSH: + +---- +$ ssh -L 9000:.weechat/relay_socket user@hostname +---- + +This redirects local relay clients connecting on port 9000 to the WeeChat +instance running on "hostname". + [[relay_commands]] ==== Befehle |