2024-03-11 13:04:15 +03:00
|
|
|
{{define "form/streamHTTPUpgrade"}}
|
2024-03-11 10:36:33 +03:00
|
|
|
<a-form :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }">
|
|
|
|
<a-form-item label="PROXY Protocol">
|
|
|
|
<a-switch v-model="inbound.stream.httpupgrade.acceptProxyProtocol"></a-switch>
|
|
|
|
</a-form-item>
|
|
|
|
<a-form-item label='{{ i18n "path" }}'>
|
|
|
|
<a-input v-model.trim="inbound.stream.httpupgrade.path"></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
<a-form-item label='{{ i18n "host" }}'>
|
|
|
|
<a-input v-model.trim="inbound.stream.httpupgrade.host"></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</a-form>
|
|
|
|
{{end}}
|