2023-02-09 22:18:06 +03:00
|
|
|
{{define "form/streamHTTP"}}
|
|
|
|
<a-form layout="inline">
|
2023-12-09 18:18:06 +03:00
|
|
|
<table width="100%" class="ant-table-tbody">
|
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "path" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input v-model.trim="inbound.stream.http.path" style="width: 250px;"></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>host</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-row v-for="(host, index) in inbound.stream.http.host">
|
|
|
|
<a-input v-model.trim="inbound.stream.http.host[index]" style="width: 250px;"></a-input>
|
|
|
|
</a-row>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2023-02-09 22:18:06 +03:00
|
|
|
</a-form>
|
|
|
|
{{end}}
|