diff --git a/docs/changelog.md b/docs/changelog.md index e0f5c1e2..92de6c8e 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -3,6 +3,7 @@ * Add [NTP service](/configuration/ntp) * Add Add multiple server names and multi-user support for shadowtls * Add strict mode support for shadowtls v3 +* Add uTLS support for shadowtls v3 #### 1.2-beta3 diff --git a/docs/configuration/inbound/index.md b/docs/configuration/inbound/index.md index 5b680bec..27b2d22d 100644 --- a/docs/configuration/inbound/index.md +++ b/docs/configuration/inbound/index.md @@ -26,6 +26,7 @@ | `trojan` | [Trojan](./trojan) | TCP | | `naive` | [Naive](./naive) | X | | `hysteria` | [Hysteria](./hysteria) | X | +| `shadowtls` | [ShadowTLS](./shadowtls) | TCP | | `tun` | [Tun](./tun) | X | | `redirect` | [Redirect](./redirect) | X | | `tproxy` | [TProxy](./tproxy) | X | diff --git a/docs/configuration/inbound/shadowtls.md b/docs/configuration/inbound/shadowtls.md index 01c3be24..b4b819ea 100644 --- a/docs/configuration/inbound/shadowtls.md +++ b/docs/configuration/inbound/shadowtls.md @@ -28,7 +28,8 @@ ... // Dial Fields } - } + }, + "strict_mode": false } ``` @@ -72,3 +73,9 @@ Handshake server address and [Dial options](/configuration/shared/dial). Handshake server address and [Dial options](/configuration/shared/dial) for specific server name. Only available in the ShadowTLS protocol 2/3. + +#### strict_mode + +ShadowTLS strict mode. + +Only available in the ShadowTLS protocol 3. diff --git a/docs/configuration/inbound/shadowtls.zh.md b/docs/configuration/inbound/shadowtls.zh.md index a3bdc9f2..78b0bea3 100644 --- a/docs/configuration/inbound/shadowtls.zh.md +++ b/docs/configuration/inbound/shadowtls.zh.md @@ -28,7 +28,8 @@ ... // 拨号字段 } - } + }, + "strict_mode": false } ``` @@ -73,3 +74,9 @@ ShadowTLS 用户。 对于特定服务器名称的握手服务器地址和 [拨号参数](/zh/configuration/shared/dial/)。 仅在 ShadowTLS 协议版本 2/3 中可用。 + +#### strict_mode + +ShadowTLS 严格模式。 + +仅在 ShadowTLS 协议版本 3 中可用。 diff --git a/docs/configuration/outbound/index.md b/docs/configuration/outbound/index.md index 189e4d1c..a8a1874f 100644 --- a/docs/configuration/outbound/index.md +++ b/docs/configuration/outbound/index.md @@ -28,6 +28,7 @@ | `hysteria` | [Hysteria](./hysteria) | | `shadowsocksr` | [ShadowsocksR](./shadowsocksr) | | `vless` | [VLESS](./vless) | +| `shadowtls` | [ShadowTLS](./shadowtls) | | `tor` | [Tor](./tor) | | `ssh` | [SSH](./ssh) | | `dns` | [DNS](./dns) |