From 99e1c6ff5406a1ad015f65bb2aa45be11487342e Mon Sep 17 00:00:00 2001 From: ospab Date: Tue, 23 Jun 2026 01:02:48 +0300 Subject: [PATCH] docs: document l4_protocol for server outbounds --- Configuration.md | 3 ++- Configuration_ru.md | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Configuration.md b/Configuration.md index e6cedcf..be7b647 100644 --- a/Configuration.md +++ b/Configuration.md @@ -92,7 +92,8 @@ Servers route traffic directly to the internet by default, but can use upstream "type": "socks", "tag": "tor-proxy", "server": "127.0.0.1", - "port": 9050 + "port": 9050, + "l4_protocol": "all" // "all", "tcp", or "udp" (restricts proxy to specific protocol) } ] ``` diff --git a/Configuration_ru.md b/Configuration_ru.md index 6bfb187..1f862ad 100644 --- a/Configuration_ru.md +++ b/Configuration_ru.md @@ -92,7 +92,8 @@ "type": "socks", "tag": "tor-proxy", "server": "127.0.0.1", - "port": 9050 + "port": 9050, + "l4_protocol": "all" // "all", "tcp" или "udp" (ограничивает проксирование по L4 протоколу) } ] ```