增加OCSP Stapling功能

This commit is contained in:
GoEdgeLab
2022-03-10 11:55:09 +08:00
parent 3a546b626d
commit 366947d34f
3 changed files with 14 additions and 1 deletions

View File

@@ -21,7 +21,8 @@ Vue.component("ssl-config-box", {
hsts: null,
cipherSuitesIsOn: false,
cipherSuites: [],
http2Enabled: true
http2Enabled: true,
ocspIsOn: false
}
} else {
if (policy.certRefs == null) {
@@ -498,6 +499,14 @@ Vue.component("ssl-config-box", {
</td>
</tr>
<!-- OCSP -->
<tr>
<td>OCSP Stapling</td>
<td><checkbox name="ocspIsOn" v-model="policy.ocspIsOn"></checkbox>
<p class="comment">选中表示启用OCSP Stapling。</p>
</td>
</tr>
<!-- 客户端认证 -->
<tr>
<td>客户端认证方式</td>