服务支持fastcgi;路径规则支持匹配后缀

This commit is contained in:
刘祥超
2021-05-10 21:13:09 +08:00
parent e8af3960f8
commit 0c650987d6
26 changed files with 803 additions and 25 deletions

View File

@@ -7,8 +7,8 @@
<tr>
<td>网络协议</td>
<td>
<select class="ui dropdown auto-width" name="protocol">
<option v-for="protocol in protocols" :value="protocol.code">{{protocol.name}}</option>
<select class="ui dropdown auto-width" name="protocol" v-model="protocol">
<option v-for="p in protocols" :value="p.code">{{p.name}}</option>
</select>
</td>
</tr>
@@ -16,7 +16,10 @@
<td class="title">端口 *</td>
<td>
<input type="text" name="address" ref="focus" v-model="address"/>
<p class="comment">可以是一个数字端口通常不超过65535也可以是"地址:端口"的方式。</p>
<p class="comment">可以是一个数字端口通常不超过65535也可以是"地址:端口"的方式。
<span v-if="protocol == 'http'">HTTP常用端口为80。</span>
<span v-if="protocol == 'https'">HTTPS常用端口为443。</span>
</p>
</td>
</tr>
</table>