From 1b3d2d8bc560e75c007581b623b44609cb1491c8 Mon Sep 17 00:00:00 2001 From: ne4sp <135099093+ne4sp@users.noreply.github.com> Date: Sun, 12 Apr 2026 15:45:01 +0300 Subject: [PATCH 1/3] Update XRAY_DOUBLE_HOP.ru.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit При инициализации xray на сервере не запускался из-за длинного shortID. --- docs/Setup_examples/XRAY_DOUBLE_HOP.ru.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/Setup_examples/XRAY_DOUBLE_HOP.ru.md b/docs/Setup_examples/XRAY_DOUBLE_HOP.ru.md index 8cbdf3a..438aef5 100644 --- a/docs/Setup_examples/XRAY_DOUBLE_HOP.ru.md +++ b/docs/Setup_examples/XRAY_DOUBLE_HOP.ru.md @@ -37,13 +37,13 @@ xray x25519 ``` 3. **Short ID (идентификатор Reality):** ```bash -openssl rand -hex 16 -# Сохраните вывод (например: 0123456789abcdef0123456789abcdef) — это +openssl rand -hex 8 +# Сохраните вывод (например: abc123def456) — это ``` 4. **Random Path (путь для xhttp):** ```bash openssl rand -hex 8 -# Сохраните вывод (например, abc123def456), чтобы заменить в конфигах +# Сохраните вывод (например, 0123456789abcdef0123456789abcdef), чтобы заменить в конфигах ``` --- From 62a90e05a06a0f5a1b1062f2939977c4969ba186 Mon Sep 17 00:00:00 2001 From: ne4sp <135099093+ne4sp@users.noreply.github.com> Date: Sun, 12 Apr 2026 15:59:59 +0300 Subject: [PATCH 2/3] Update XRAY_DOUBLE_HOP.en.md --- docs/Setup_examples/XRAY_DOUBLE_HOP.en.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/Setup_examples/XRAY_DOUBLE_HOP.en.md b/docs/Setup_examples/XRAY_DOUBLE_HOP.en.md index 6cde329..c04a315 100644 --- a/docs/Setup_examples/XRAY_DOUBLE_HOP.en.md +++ b/docs/Setup_examples/XRAY_DOUBLE_HOP.en.md @@ -37,13 +37,13 @@ xray x25519 ``` 3. **Short ID (Reality identifier):** ```bash -openssl rand -hex 16 -# Save the output (e.g.: 0123456789abcdef0123456789abcdef) — this is +openssl rand -hex 8 +# Save the output (e.g.: abc123def456) — this is ``` 4. **Random Path (for xhttp):** ```bash -openssl rand -hex 8 -# Save the output (e.g., abc123def456) to replace in configs +openssl rand -hex 16 +# Save the output (e.g., 0123456789abcdef0123456789abcdef) to replace in configs ``` --- From 3f69b54f5d0367bc15d2f556185e41d13e9c6562 Mon Sep 17 00:00:00 2001 From: ne4sp <135099093+ne4sp@users.noreply.github.com> Date: Sun, 12 Apr 2026 16:15:52 +0300 Subject: [PATCH 3/3] Update XRAY_DOUBLE_HOP.ru.md --- docs/Setup_examples/XRAY_DOUBLE_HOP.ru.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Setup_examples/XRAY_DOUBLE_HOP.ru.md b/docs/Setup_examples/XRAY_DOUBLE_HOP.ru.md index 438aef5..a130653 100644 --- a/docs/Setup_examples/XRAY_DOUBLE_HOP.ru.md +++ b/docs/Setup_examples/XRAY_DOUBLE_HOP.ru.md @@ -42,7 +42,7 @@ openssl rand -hex 8 ``` 4. **Random Path (путь для xhttp):** ```bash -openssl rand -hex 8 +openssl rand -hex 16 # Сохраните вывод (например, 0123456789abcdef0123456789abcdef), чтобы заменить в конфигах ```