mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-15 04:41:25 +08:00
更新components.js
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -3894,7 +3894,8 @@ Vue.component("ssl-config-box", {
|
|||||||
props: [
|
props: [
|
||||||
"v-ssl-policy",
|
"v-ssl-policy",
|
||||||
"v-protocol",
|
"v-protocol",
|
||||||
"v-server-id"
|
"v-server-id",
|
||||||
|
"v-support-http3"
|
||||||
],
|
],
|
||||||
created: function () {
|
created: function () {
|
||||||
let that = this
|
let that = this
|
||||||
@@ -3918,6 +3919,7 @@ Vue.component("ssl-config-box", {
|
|||||||
cipherSuitesIsOn: false,
|
cipherSuitesIsOn: false,
|
||||||
cipherSuites: [],
|
cipherSuites: [],
|
||||||
http2Enabled: true,
|
http2Enabled: true,
|
||||||
|
http3Enabled: false,
|
||||||
ocspIsOn: false
|
ocspIsOn: false
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -4295,6 +4297,15 @@ Vue.component("ssl-config-box", {
|
|||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr v-show="vProtocol == 'https' && vSupportHttp3">
|
||||||
|
<td class="title">启用HTTP/3</td>
|
||||||
|
<td>
|
||||||
|
<div class="ui checkbox">
|
||||||
|
<input type="checkbox" value="1" v-model="policy.http3Enabled"/>
|
||||||
|
<label></label>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="title">选择证书</td>
|
<td class="title">选择证书</td>
|
||||||
<td>
|
<td>
|
||||||
|
|||||||
Reference in New Issue
Block a user