diff options
| author | MHSanaei <ho3ein.sanaei@gmail.com> | 2026-02-11 20:18:05 +0300 |
|---|---|---|
| committer | MHSanaei <ho3ein.sanaei@gmail.com> | 2026-02-11 20:21:23 +0300 |
| commit | 511adffc5bb419a938e3b1eb0087a49f62d76db6 (patch) | |
| tree | 165b461e623c974ffb2f18f4d6b8b33964a805df /web/html | |
| parent | fc6344b840d9153dbf43eb58b08523ca15350b25 (diff) | |
Remove allowInsecure
Remove the deprecated `allowInsecure`
Diffstat (limited to 'web/html')
| -rw-r--r-- | web/html/form/outbound.html | 14 | ||||
| -rw-r--r-- | web/html/form/tls_settings.html | 3 |
2 files changed, 7 insertions, 10 deletions
diff --git a/web/html/form/outbound.html b/web/html/form/outbound.html index 4df095d4..a2de920a 100644 --- a/web/html/form/outbound.html +++ b/web/html/form/outbound.html @@ -700,14 +700,12 @@ <a-form-item label="ECH Config List"> <a-input v-model.trim="outbound.stream.tls.echConfigList"></a-input> </a-form-item> - <a-form-item label="Allow Insecure"> - <a-switch v-model="outbound.stream.tls.allowInsecure"></a-switch> - </a-form-item> <a-form-item label="verify Peer Cert By Name"> <a-input - v-model.trim="outbound.stream.tls.verifyPeerCertByName"></a-input> + v-model.trim="outbound.stream.tls.verifyPeerCertByName" + placeholder="cloudflare-dns.com"></a-input> </a-form-item> - <a-form-item label="pinned Peer Cert Sha256"> + <a-form-item label=" pinned Peer Cert Sha256"> <a-input v-model.trim="outbound.stream.tls.pinnedPeerCertSha256" placeholder="Enter SHA256 fingerprints (base64)"> </a-input> @@ -772,7 +770,8 @@ <a-switch v-model="outbound.stream.sockopt.tcpFastOpen"></a-switch> </a-form-item> <a-form-item label="Multipath TCP"> - <a-switch v-model.trim="outbound.stream.sockopt.tcpMptcp"></a-switch> + <a-switch + v-model.trim="outbound.stream.sockopt.tcpMptcp"></a-switch> </a-form-item> <a-form-item label="Penetrate"> <a-switch v-model="outbound.stream.sockopt.penetrate"></a-switch> @@ -799,7 +798,8 @@ </a-form-item> <template v-if="outbound.mux.enabled"> <a-form-item label="Concurrency"> - <a-input-number v-model.number="outbound.mux.concurrency" :min="-1" + <a-input-number v-model.number="outbound.mux.concurrency" + :min="-1" :max="1024"></a-input-number> </a-form-item> <a-form-item label="xudp Concurrency"> diff --git a/web/html/form/tls_settings.html b/web/html/form/tls_settings.html index b2368d4f..2fe82388 100644 --- a/web/html/form/tls_settings.html +++ b/web/html/form/tls_settings.html @@ -58,9 +58,6 @@ ]]</a-select-option> </a-select> </a-form-item> - <a-form-item label="Allow Insecure"> - <a-switch v-model="inbound.stream.tls.settings.allowInsecure"></a-switch> - </a-form-item> <a-form-item label="Reject Unknown SNI"> <a-switch v-model="inbound.stream.tls.rejectUnknownSni"></a-switch> </a-form-item> |
