Files
EdgeAdmin/web/views/@default/servers/components/index.html

25 lines
827 B
HTML
Raw Normal View History

2020-08-21 21:09:42 +08:00
{$layout}
2020-11-10 15:40:22 +08:00
{$template "/left_menu_top"}
2020-08-21 21:09:42 +08:00
2020-11-10 15:40:22 +08:00
<div class="right-box without-tabbar">
2020-11-10 12:47:24 +08:00
<form method="post" class="ui form" data-tea-action="$" data-tea-success="success">
2020-10-02 17:22:24 +08:00
<input type="hidden" name="globalConfigJSON" :value="JSON.stringify(globalConfig)"/>
<table class="ui table selectable definition">
<tr>
<td colspan="2">HTTP/HTTPS通用设置</td>
</tr>
<tr>
<td class="title">是否严格匹配域名</td>
<td>
<div class="ui checkbox">
<input type="checkbox" name="matchDomainStrictly" value="1" v-model="globalConfig.httpAll.matchDomainStrictly"/>
<label></label>
</div>
<p class="comment">如果选择了严格匹配域名则没有在Edge里绑定过的域名访问时都会返回404。</p>
</td>
</tr>
</table>
<submit-btn>保存</submit-btn>
</form>
2020-09-13 20:37:07 +08:00
</div>