diff options
| author | mhsanaei <ho3ein.sanaei@gmail.com> | 2024-05-24 11:17:20 +0300 |
|---|---|---|
| committer | mhsanaei <ho3ein.sanaei@gmail.com> | 2024-05-24 11:17:20 +0300 |
| commit | a2f6d3b8dcc7bb830f45146d2c386aea19b3b4fc (patch) | |
| tree | 95d1b1fc7f8aa7901aa6dd4374d5daaf44015ca8 /web/html/xui | |
| parent | 80cd7931544443f2e423183227ef95741c6f0254 (diff) | |
new - (TLS) Session Resumption
Diffstat (limited to 'web/html/xui')
| -rw-r--r-- | web/html/xui/form/tls_settings.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/web/html/xui/form/tls_settings.html b/web/html/xui/form/tls_settings.html index da804695..16eb8acb 100644 --- a/web/html/xui/form/tls_settings.html +++ b/web/html/xui/form/tls_settings.html @@ -56,11 +56,14 @@ <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> <a-form-item label="Disable System Root"> <a-switch v-model="inbound.stream.tls.settings.disableSystemRoot"></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 label="Session Resumption"> + <a-switch v-model="inbound.stream.tls.settings.enableSessionResumption"></a-switch> </a-form-item> <template v-for="cert,index in inbound.stream.tls.certs"> <a-form-item label='{{ i18n "certificate" }}'> |
