mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-02 20:00:26 +08:00
25 lines
794 B
HTML
25 lines
794 B
HTML
{$layout}
|
||
{$template "/left_menu"}
|
||
|
||
<div class="right-box">
|
||
<form class="ui form" data-tea-action="$" data-tea-success="success">
|
||
<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>
|
||
|
||
</div> |