mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-11 10:10:28 +08:00
29 lines
956 B
HTML
29 lines
956 B
HTML
{$layout}
|
|
|
|
{$var "header"}
|
|
<script src="/servers/certs/datajs" type="text/javascript"></script>
|
|
<script src="/js/sortable.min.js" type="text/javascript"></script>
|
|
{$end}
|
|
|
|
{$template "../settings_menu"}
|
|
{$template "/left_menu_with_menu"}
|
|
|
|
<div class="right-box with-menu">
|
|
<form method="post" 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">绑定端口 *</td>
|
|
<td>
|
|
<network-addresses-box :v-server-type="serverType" :v-addresses="tlsConfig.listen" :v-protocol="'tls'" :v-support-range="true"></network-addresses-box>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<!-- SSL配置 -->
|
|
<ssl-config-box :v-ssl-policy="tlsConfig.sslPolicy" :v-protocol="'tls'" v-show="tlsConfig.isOn"></ssl-config-box>
|
|
|
|
<submit-btn></submit-btn>
|
|
</form>
|
|
</div> |