mirror of
https://github.com/alireza0/x-ui.git
synced 2026-03-18 14:55:49 +00:00
- Including non-tls inbounds - Support forcedTLS/none/same security - Change port is possible - Move it to standard streamSettings - Optimizing database
29 lines
1.8 KiB
HTML
29 lines
1.8 KiB
HTML
{{define "form/externalProxy"}}
|
|
<a-form layout="inline">
|
|
<a-divider style="margin:0;"></a-divider>
|
|
<a-form-item label="External Proxy">
|
|
<a-switch v-model="externalProxy"></a-switch>
|
|
<a-button v-if="externalProxy" type="primary" style="margin-left: 10px" size="small" @click="inbound.stream.externalProxy.push({forceTls: 'same', dest: '', remark: ''})">+</a-button>
|
|
</a-form-item>
|
|
<table width="100%" class="ant-table-tbody" v-if="externalProxy">
|
|
<tr style="line-height: 40px;">
|
|
<td width="100%">
|
|
<a-input-group style="margin-top:5px;" compact v-for="(row, index) in inbound.stream.externalProxy">
|
|
<template v-if="inbound.canEnableTls()">
|
|
<a-tooltip title="Force TLS">
|
|
<a-select v-model="row.forceTls" style="width:20%; margin: 0px" :dropdown-class-name="themeSwitcher.currentTheme">
|
|
<a-select-option value="same">{{ i18n "pages.inbounds.same" }}</a-select-option>
|
|
<a-select-option value="none">{{ i18n "none" }}</a-select-option>
|
|
<a-select-option value="tls">TLS</a-select-option>
|
|
</a-select>
|
|
</a-tooltip>
|
|
</template>
|
|
<a-input style="width: 40%" v-model.trim="row.dest" placeholder='{{ i18n "host" }}:{{ i18n "pages.inbounds.port" }}'></a-input>
|
|
<a-input :style="inbound.canEnableTls() ? 'width: 30%' : 'width: 50%'" v-model.trim="row.remark" placeholder='{{ i18n "remark" }}'></a-input>
|
|
<a-button style="width: 10%; margin: 0px" @click="inbound.stream.externalProxy.splice(index, 1)">-</a-button>
|
|
</a-input-group>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</a-form>
|
|
{{end}} |