stream_httpupgrade.html 564 B

12345678910111213
  1. {{define "form/streamHTTPUpgrade"}}
  2. <a-form :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }">
  3. <a-form-item label="PROXY Protocol">
  4. <a-switch v-model="inbound.stream.httpupgrade.acceptProxyProtocol"></a-switch>
  5. </a-form-item>
  6. <a-form-item label='{{ i18n "host" }}'>
  7. <a-input v-model.trim="inbound.stream.httpupgrade.host"></a-input>
  8. </a-form-item>
  9. <a-form-item label='{{ i18n "path" }}'>
  10. <a-input v-model.trim="inbound.stream.httpupgrade.path"></a-input>
  11. </a-form-item>
  12. </a-form>
  13. {{end}}