-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
139 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.8.22 | ||
1.8.23 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{{define "form/streamSplitHTTP"}} | ||
<a-form :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }"> | ||
<a-form-item label='host'> | ||
<a-input v-model.trim="inbound.stream.splithttp.host"></a-input> | ||
</a-form-item> | ||
<a-form-item label='path'> | ||
<a-input v-model.trim="inbound.stream.splithttp.path"></a-input> | ||
</a-form-item> | ||
<a-form-item label="请求头"> | ||
<a-row> | ||
<a-button size="small" @click="inbound.stream.splithttp.addHeader('Host', '')"> | ||
+ | ||
</a-button> | ||
</a-row> | ||
<a-input-group v-for="(header, index) in inbound.stream.splithttp.headers"> | ||
<a-input style="width: 50%" v-model.trim="header.name" addon-before="名称"></a-input> | ||
<a-input style="width: 50%" v-model.trim="header.value" addon-before="值"> | ||
<template slot="addonAfter"> | ||
<a-button size="small" @click="inbound.stream.splithttp.removeHeader(index)"> | ||
- | ||
</a-button> | ||
</template> | ||
</a-input> | ||
</a-input-group> | ||
</a-form-item> | ||
<a-form-item label="Max Upload Size (MB)"> | ||
<a-input-number v-model="inbound.stream.splithttp.maxUploadSize" :min="0"></a-input-number> | ||
</a-form-item> | ||
<a-form-item label="Max Concurrent Upload"> | ||
<a-input-number v-model="inbound.stream.splithttp.maxConcurrentUploads" :min="0"></a-input-number> | ||
</a-form-item> | ||
</a-form> | ||
{{end}} |