@@ -49,8 +49,8 @@ module.exports = defineCustomProvider(async function () {
4949
5050| 类型 | 描述 | 备注 |
5151| :----------------------------------------------: | ------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------- |
52- | ` custom ` <Badge text =" 推荐 " vertical =" middle " /> | 自己维护的节点 | 支持 Shadowsocks, Shadowsocksr, Snell, HTTPS, HTTP, Vmess, Vless, Hysteria 2, Socks5, Tuic, Trojan, Wireguard |
53- | ` clash ` <Badge text =" 推荐 " vertical =" middle " /> | Clash 配置 | 支持 Shadowsocks, Shadowsocksr, Snell, HTTPS, HTTP, Vmess, Vless, Hysteria 2, Socks5, Tuic, Trojan, Wireguard |
52+ | ` custom ` <Badge text =" 推荐 " vertical =" middle " /> | 自己维护的节点 | 支持 Shadowsocks, Shadowsocksr, Snell, HTTPS, HTTP, Vmess, Vless, Hysteria 2, AnyTLS, Socks5, Tuic, Trojan, Wireguard |
53+ | ` clash ` <Badge text =" 推荐 " vertical =" middle " /> | Clash 配置 | 支持 Shadowsocks, Shadowsocksr, Snell, HTTPS, HTTP, Vmess, Vless, Hysteria 2, AnyTLS, Socks5, Tuic, Trojan, Wireguard |
5454| ` trojan ` | Trojan 订阅 | Shadowrocket 支持的 Trojan 订阅格式 |
5555| ` shadowsocks_json_subscribe ` | 针对 Windows 客户端的 Shadowsocks 订阅地址 | 通常命名为 _ gui-config.json_ |
5656| ` shadowsocks_subscribe ` | 通用的 Shadowsocks 订阅地址 | |
@@ -547,6 +547,27 @@ Clash 需要在配置中开启 `clashConfig.enableHysteria2`。
547547}
548548```
549549
550+ ### AnyTLS
551+
552+ 当前支持为 Clash、Surge 和 sing-box 生成 AnyTLS 节点。
553+
554+ ``` json5
555+ {
556+ type: ' anytls' ,
557+ nodeName: ' AnyTLS' ,
558+ hostname: ' anytls.example.com' ,
559+ port: 443 ,
560+ password: ' password' ,
561+ udpRelay: false , // 可选
562+ sni: ' sni.example.com' , // 可选
563+ alpn: [' h2' , ' http/1.1' ], // 可选
564+ skipCertVerify: false , // 可选
565+ idleSessionCheckInterval: 0 , // 可选
566+ idleSessionTimeout: 0 , // 可选
567+ minIdleSessions: 0 , // 可选
568+ }
569+ ```
570+
550571## SSD 订阅
551572
552573``` js
@@ -798,7 +819,7 @@ module.exports = {
798819
799820:::warning 注意
8008211 . TLS 1.3 需要服务端支持;
801- 2 . 支持 TLS 的节点类型有 Shadowsocks with v2ray-plugin(tls), Vmess(tls), HTTPS;
822+ 2 . 支持 TLS 的节点类型有 Shadowsocks with v2ray-plugin(tls), Vmess(tls), HTTPS, AnyTLS ;
802823:::
803824
804825### nodeConfig.skipCertVerify
@@ -809,7 +830,7 @@ module.exports = {
809830关闭 TLS 节点的证书检查。
810831
811832:::warning 注意
812- 1 . 支持 TLS 的节点类型有 Shadowsocks with v2ray-plugin(tls), Vmess(tls), HTTPS;
833+ 1 . 支持 TLS 的节点类型有 Shadowsocks with v2ray-plugin(tls), Vmess(tls), HTTPS, AnyTLS ;
8138342 . 请不要随意将证书检查关闭;
814835:::
815836
0 commit comments