Fix TLS and ALPN

This commit is contained in:
Alireza Ahmadi
2023-03-23 10:03:09 +01:00
parent e1f8e8efd2
commit 1b2e165a65
3 changed files with 35 additions and 8 deletions

View File

@@ -40,6 +40,11 @@
<a-form-item label='{{ i18n "domainName" }}'>
<a-input v-model.trim="inbound.stream.tls.server"></a-input>
</a-form-item>
<a-form-item label="Alpn">
<a-checkbox-group v-model="inbound.stream.tls.alpn" style="width:200px">
<a-checkbox v-for="key in ALPN_OPTION" :value="key">[[ key ]]</a-checkbox>
</a-checkbox-group>
</a-form-item>
<a-form-item label="Allow insecure">
<a-switch v-model="inbound.stream.tls.settings[0].allowInsecure"></a-switch>
</a-form-item>