From 7f27550e33ed0e754cb73df81bb615e2c895ea2d Mon Sep 17 00:00:00 2001 From: uzziel Date: Mon, 9 Jan 2023 02:33:37 +0330 Subject: [PATCH] added more comments to fallbacks --- All-in-One-fallbacks-Nginx/server.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/All-in-One-fallbacks-Nginx/server.json b/All-in-One-fallbacks-Nginx/server.json index 980cc99..fe63a95 100644 --- a/All-in-One-fallbacks-Nginx/server.json +++ b/All-in-One-fallbacks-Nginx/server.json @@ -4,6 +4,7 @@ }, "inbounds": [ { + "tag": "Vless-TCP-XTLS", "port": 443, // This is TLS entrypoint. This entrypoint does the SSL Termination then routes the request based on the Path or ALPN type. "protocol": "vless", "settings": { @@ -17,25 +18,25 @@ "fallbacks": [ // H2 { - // if the SNI was `trh2o.EXAMPLE.COM`, pass it to trojan-h2 listener + // if the SNI was `trh2o.EXAMPLE.COM` and `alpn=h2`, pass it to trojan-h2 listener "name": "trh2o.example.com", "alpn": "h2", "dest": "@trojan-h2" }, { - // if the SNI was `vlh2o.EXAMPLE.COM`, pass it to vless-h2 listener + // if the SNI was `vlh2o.EXAMPLE.COM` and `alpn=h2`, pass it to vless-h2 listener "name": "vlh2o.example.com", "alpn": "h2", "dest": "@vless-h2" }, { - // if the SNI was `vmh2o.EXAMPLE.COM`, pass it to vmess-h2 listener + // if the SNI was `vmh2o.EXAMPLE.COM` and `alpn=h2`, pass it to vmess-h2 listener "name": "vmh2o.example.com", "alpn": "h2", "dest": "@vmess-h2" }, { - // if the SNI was `ssh2o.EXAMPLE.COM`, pass it to shadowsocks-h2 listener + // if the SNI was `ssh2o.EXAMPLE.COM` and `alpn=h2`, pass it to shadowsocks-h2 listener "name": "ssh2o.example.com", "alpn": "h2", "dest": 4003