2023-02-09 22:48:06 +03:30
|
|
|
{{define "form/dokodemo"}}
|
|
|
|
|
<a-form layout="inline">
|
|
|
|
|
<a-form-item label='{{ i18n "pages.inbounds.targetAddress"}}'>
|
|
|
|
|
<a-input v-model.trim="inbound.settings.address"></a-input>
|
|
|
|
|
</a-form-item>
|
|
|
|
|
<a-form-item label='{{ i18n "pages.inbounds.destinationPort"}}'>
|
2023-05-04 21:27:42 +04:30
|
|
|
<a-input-number v-model="inbound.settings.port"></a-input-number>
|
2023-02-09 22:48:06 +03:30
|
|
|
</a-form-item>
|
2023-05-07 17:12:47 +03:30
|
|
|
<br>
|
2023-02-09 22:48:06 +03:30
|
|
|
<a-form-item label='{{ i18n "pages.inbounds.network"}}'>
|
2023-05-08 19:14:22 +04:30
|
|
|
<a-select v-model="inbound.settings.network" style="width: 100px;" :dropdown-class-name="themeSwitcher.darkCardClass">
|
2023-03-30 18:33:19 +03:30
|
|
|
<a-select-option value="tcp,udp">TCP+UDP</a-select-option>
|
|
|
|
|
<a-select-option value="tcp">TCP</a-select-option>
|
|
|
|
|
<a-select-option value="udp">UDP</a-select-option>
|
2023-02-09 22:48:06 +03:30
|
|
|
</a-select>
|
|
|
|
|
</a-form-item>
|
2023-05-07 17:12:47 +03:30
|
|
|
<br>
|
2023-03-17 19:37:49 +03:30
|
|
|
<a-form-item label="FollowRedirect">
|
|
|
|
|
<a-switch v-model="inbound.settings.followRedirect"></a-switch>
|
|
|
|
|
</a-form-item>
|
2023-02-09 22:48:06 +03:30
|
|
|
</a-form>
|
|
|
|
|
{{end}}
|