mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-12-24 19:06:35 +08:00
31 lines
982 B
HTML
31 lines
982 B
HTML
{$layout}
|
||
|
||
{$template "/left_menu"}
|
||
|
||
<div class="right-box">
|
||
<p class="comment">提醒:HTTP2、证书等信息修改后,可能需要清空浏览器缓存后才能浏览效果。</p>
|
||
<form class="ui form" data-tea-action="$" data-tea-success="success">
|
||
<input type="hidden" name="serverId" :value="serverId"/>
|
||
<input type="hidden" name="serverType" :value="serverType"/>
|
||
<table class="ui table selectable definition">
|
||
<tr>
|
||
<td class="title">是否启用HTTPS</td>
|
||
<td>
|
||
<div class="ui checkbox">
|
||
<input type="checkbox" name="isOn" value="1" v-model="httpsConfig.isOn"/>
|
||
<label></label>
|
||
</div>
|
||
</td>
|
||
</tr>
|
||
<tbody v-show="httpsConfig.isOn">
|
||
<tr>
|
||
<td class="title">绑定端口 *</td>
|
||
<td>
|
||
<network-addresses-box :v-server-type="serverType" :v-addresses="httpsConfig.addresses" :v-protocol="'https'"></network-addresses-box>
|
||
</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
<submit-btn></submit-btn>
|
||
</form>
|
||
</div> |