From 2bc041157bbf80a39277e254e11553dfd686c8cc Mon Sep 17 00:00:00 2001 From: xqzr <34030394+xqzr@users.noreply.github.com> Date: Sun, 13 Oct 2024 23:15:09 +0800 Subject: [PATCH] Update server.json --- VLESS-TLS-SplitHTTP-H3/server.json | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/VLESS-TLS-SplitHTTP-H3/server.json b/VLESS-TLS-SplitHTTP-H3/server.json index b70823c..58f2964 100644 --- a/VLESS-TLS-SplitHTTP-H3/server.json +++ b/VLESS-TLS-SplitHTTP-H3/server.json @@ -15,7 +15,7 @@ "settings": { "clients": [ { - "id": "UUID" // Change to your UUID. + "id": "UUID","//": "Change to your UUID." } ], "decryption": "none" @@ -25,19 +25,20 @@ "security": "tls", "splithttpSettings": { "path": "/splithttp", - "host": "example.com" // Change to your domain. + "host": "example.com","//": "Change to your domain." }, "tlsSettings": { "rejectUnknownSni": true, "minVersion": "1.3", "alpn": [ - "h3" // If you want to use with CDN, you need to change alpn to ["h2", "http/1.1"]. + "h3" ], + "//": "If you want to use with CDN, you need to change alpn to ["h2", "http/1.1"].", "certificates": [ { "ocspStapling": 3600, - "certificateFile": "/path/to/fullchain.pem", // Change to your fullchain file path. - "keyFile": "/path/to/privkey.pem" // Change to your private key file path. + "certificateFile": "/path/to/fullchain.pem","//": "Change to your fullchain file path.", + "keyFile": "/path/to/privkey.pem","//": "Change to your private key file path." } ] }