stream_http.html 576 B

12345678910111213141516
  1. {{define "form/streamHTTP"}}
  2. <a-form layout="inline">
  3. <a-form-item label="AcceptProxyProtocol">
  4. <a-switch v-model="inbound.stream.http.sockopt.acceptProxyProtocol"></a-switch>
  5. </a-form-item>
  6. <br>
  7. <a-form-item label='{{ i18n "path" }}'>
  8. <a-input v-model.trim="inbound.stream.http.path"></a-input>
  9. </a-form-item>
  10. <a-form-item label="Host">
  11. <a-row v-for="(host, index) in inbound.stream.http.host">
  12. <a-input v-model.trim="inbound.stream.http.host[index]"></a-input>
  13. </a-row>
  14. </a-form-item>
  15. </a-form>
  16. {{end}}