diff options
| author | mhsanaei <ho3ein.sanaei@gmail.com> | 2024-10-29 14:50:25 +0300 |
|---|---|---|
| committer | mhsanaei <ho3ein.sanaei@gmail.com> | 2024-10-29 14:50:25 +0300 |
| commit | e359b5c75e192e03870ae6c201c065740dc13016 (patch) | |
| tree | c12afc5dde5a7d3c2b227443e00e4466d7f7a3c2 /web/html/xui/form | |
| parent | 3b3bd3dea4552ced8f8e09c4357ef61e829d2756 (diff) | |
removed - XTLS Security
because its too old and no one use it anymore
Diffstat (limited to 'web/html/xui/form')
| -rw-r--r-- | web/html/xui/form/client.html | 6 | ||||
| -rw-r--r-- | web/html/xui/form/tls_settings.html | 18 | ||||
| -rw-r--r-- | web/html/xui/form/xtls_settings.html | 58 |
3 files changed, 1 insertions, 81 deletions
diff --git a/web/html/xui/form/client.html b/web/html/xui/form/client.html index 01d96c73..c5d5bf0e 100644 --- a/web/html/xui/form/client.html +++ b/web/html/xui/form/client.html @@ -104,12 +104,6 @@ </a-textarea> </a-form> </a-form-item> - <a-form-item v-if="inbound.stream.isXtls" label='Flow'> - <a-select v-model="client.flow" :dropdown-class-name="themeSwitcher.currentTheme"> - <a-select-option value="" selected>{{ i18n "none" }}</a-select-option> - <a-select-option v-for="key in XTLS_FLOW_CONTROL" :value="key">[[ key ]]</a-select-option> - </a-select> - </a-form-item> <a-form-item v-if="inbound.canEnableTlsFlow()" label='Flow'> <a-select v-model="client.flow" :dropdown-class-name="themeSwitcher.currentTheme"> <a-select-option value="" selected>{{ i18n "none" }}</a-select-option> diff --git a/web/html/xui/form/tls_settings.html b/web/html/xui/form/tls_settings.html index af71b8c7..4eff7698 100644 --- a/web/html/xui/form/tls_settings.html +++ b/web/html/xui/form/tls_settings.html @@ -5,18 +5,7 @@ <a-form-item label='{{ i18n "security" }}'> <a-radio-group v-model="inbound.stream.security" button-style="solid"> <a-radio-button value="none">{{ i18n "none" }}</a-radio-button> - <a-tooltip> - <template slot="title"> - <span>{{ i18n "pages.inbounds.xtlsDesc" }}</span> - </template> - <a-radio-button v-if="inbound.canEnableXtls()" value="xtls">XTLS</a-radio-button> - </a-tooltip> - <a-tooltip> - <template slot="title"> - <span>{{ i18n "pages.inbounds.realityDesc" }}</span> - </template> - <a-radio-button v-if="inbound.canEnableReality()" value="reality">REALITY</a-radio-button> - </a-tooltip> + <a-radio-button v-if="inbound.canEnableReality()" value="reality">Reality</a-radio-button> <a-radio-button value="tls">TLS</a-radio-button> </a-radio-group> </a-form-item> @@ -116,11 +105,6 @@ </template> </template> - <!-- xtls settings --> - <template v-else-if="inbound.stream.isXtls"> - {{template "form/xtlsSettings"}} - </template> - <!-- reality settings --> <template v-if="inbound.stream.isReality"> {{template "form/realitySettings"}} diff --git a/web/html/xui/form/xtls_settings.html b/web/html/xui/form/xtls_settings.html deleted file mode 100644 index e6b88b4f..00000000 --- a/web/html/xui/form/xtls_settings.html +++ /dev/null @@ -1,58 +0,0 @@ -{{define "form/xtlsSettings"}} -<template> - <a-form-item label="SNI" placeholder="Server Name Indication"> - <a-input v-model.trim="inbound.stream.xtls.sni"></a-input> - </a-form-item> - <a-form-item label="ALPN"> - <a-select mode="multiple" :dropdown-class-name="themeSwitcher.currentTheme" v-model="inbound.stream.xtls.alpn"> - <a-select-option v-for="alpn in ALPN_OPTION" :value="alpn">[[ alpn ]]</a-select-option> - </a-select> - </a-form-item> - <a-form-item label="Allow Insecure"> - <a-switch v-model="inbound.stream.xtls.settings.allowInsecure"></a-switch> - </a-form-item> - <template v-for="cert,index in inbound.stream.xtls.certs"> - <a-form-item label='{{ i18n "certificate" }}'> - <a-radio-group v-model="cert.useFile" button-style="solid"> - <a-radio-button :value="true">{{ i18n "pages.inbounds.certificatePath" }}</a-radio-button> - <a-radio-button :value="false">{{ i18n "pages.inbounds.certificateContent" }}</a-radio-button> - </a-radio-group> - <a-button icon="plus" v-if="index === 0" type="primary" size="small" @click="inbound.stream.xtls.addCert()" - style="margin-left: 10px"></a-button> - <a-button icon="minus" v-if="inbound.stream.xtls.certs.length>1" type="primary" size="small" - @click="inbound.stream.xtls.removeCert(index)" style="margin-left: 10px"></a-button> - </a-form-item> - <template v-if="cert.useFile"> - <a-form-item label='{{ i18n "pages.inbounds.publicKey" }}'> - <a-input v-model.trim="cert.certFile"></a-input> - </a-form-item> - <a-form-item label='{{ i18n "pages.inbounds.privatekey" }}'> - <a-input v-model.trim="cert.keyFile"></a-input> - </a-form-item> - <a-form-item label=" "> - <a-button type="primary" icon="import" @click="setDefaultCertXtls(index)"> - {{ i18n "pages.inbounds.setDefaultCert" }}</a-button> - </a-form-item> - </template> - <template v-else> - <a-form-item label='{{ i18n "pages.inbounds.publicKey" }}'> - <a-input type="textarea" :rows="3" v-model="cert.cert"></a-input> - </a-form-item> - <a-form-item label='{{ i18n "pages.inbounds.privatekey" }}'> - <a-input type="textarea" :rows="3" v-model="cert.key"></a-input> - </a-form-item> - </template> - <a-form-item label='OCSP stapling'> - <a-input-number v-model.number="cert.ocspStapling" :min="0"></a-input-number> - </a-form-item> - <a-form-item label="One Time Loading"> - <a-switch v-model="cert.oneTimeLoading"></a-switch> - </a-form-item> - <a-form-item label='Usage Option'> - <a-select v-model="cert.usage" style="width: 50%" :dropdown-class-name="themeSwitcher.currentTheme"> - <a-select-option v-for="key in USAGE_OPTION" :value="key">[[ key ]]</a-select-option> - </a-select> - </a-form-item> - </template> -</template> -{{end}}
\ No newline at end of file |
