mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-03-03 01:33:33 +03:00
14 lines
564 B
HTML
14 lines
564 B
HTML
![]() |
{{define "form/streamHTTPUPGRADE"}}
|
||
|
<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}}
|