2023-12-05 20:13:36 +03:00
|
|
|
{{define "form/outbound"}}
|
|
|
|
<!-- base -->
|
|
|
|
<a-tabs :active-key="outModal.activeKey" style="padding: 0; background-color: transparent;" @change="(activeKey) => {outModal.toggleJson(activeKey == '2'); }">
|
|
|
|
<a-tab-pane key="1" tab="Form">
|
|
|
|
<a-form layout="inline">
|
2023-12-08 21:45:19 +03:00
|
|
|
<table width="100%" class="ant-table-tbody">
|
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "protocol" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-select v-model="outbound.protocol" style="width: 250px;" :dropdown-class-name="themeSwitcher.currentTheme">
|
|
|
|
<a-select-option v-for="x,y in Protocols" :value="x">[[ y ]]</a-select-option>
|
|
|
|
</a-select>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "pages.xray.outbound.tag" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item has-feedback :validate-status="outModal.duplicateTag? 'warning' : 'success'">
|
|
|
|
<a-input v-model.trim="outbound.tag" style="width: 250px" @change="outModal.check()" placeholder='{{ i18n "pages.xray.outbound.tagDesc" }}'></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
2023-12-05 20:13:36 +03:00
|
|
|
<!-- freedom settings-->
|
|
|
|
<template v-if="outbound.protocol === Protocols.Freedom">
|
2023-12-08 21:45:19 +03:00
|
|
|
<tr>
|
|
|
|
<td>Strategy</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-select
|
|
|
|
v-model="outbound.settings.domainStrategy"
|
|
|
|
style="width: 250px;" :dropdown-class-name="themeSwitcher.currentTheme">
|
|
|
|
<a-select-option v-for="s in outboundDomainStrategies" :value="s">[[ s ]]</a-select-option>
|
|
|
|
</a-select>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Fragment</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-switch
|
|
|
|
:checked="Object.keys(outbound.settings.fragment).length >0"
|
|
|
|
@change="checked => outbound.settings.fragment = checked ? new Outbound.FreedomSettings.Fragment() : {}">
|
|
|
|
</a-switch>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2023-12-05 20:13:36 +03:00
|
|
|
<template v-if="Object.keys(outbound.settings.fragment).length >0">
|
2023-12-08 21:45:19 +03:00
|
|
|
<tr>
|
|
|
|
<td>Packets</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-select
|
|
|
|
v-model="outbound.settings.fragment.packets"
|
|
|
|
style="width: 250px;" :dropdown-class-name="themeSwitcher.currentTheme">
|
|
|
|
<a-select-option v-for="s in ['1-3','tlshello']" :value="s">[[ s ]]</a-select-option>
|
|
|
|
</a-select>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Length</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input v-model.trim="outbound.settings.fragment.length" style="width: 250px"></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Interval</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input v-model.trim="outbound.settings.fragment.interval" style="width: 250px"></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2023-12-05 20:13:36 +03:00
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<!-- blackhole settings -->
|
|
|
|
<template v-if="outbound.protocol === Protocols.Blackhole">
|
2023-12-08 21:45:19 +03:00
|
|
|
<tr>
|
|
|
|
<td>Response Type</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-select
|
|
|
|
v-model="outbound.settings.type"
|
|
|
|
style="width: 250px;" :dropdown-class-name="themeSwitcher.currentTheme">
|
|
|
|
<a-select-option v-for="s in ['', 'none','http']" :value="s">[[ s ]]</a-select-option>
|
|
|
|
</a-select>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2023-12-05 20:13:36 +03:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<!-- dns settings -->
|
|
|
|
<template v-if="outbound.protocol === Protocols.DNS">
|
2023-12-08 21:45:19 +03:00
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "pages.inbounds.network" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-select
|
|
|
|
v-model="outbound.settings.network"
|
|
|
|
style="width: 250px;" :dropdown-class-name="themeSwitcher.currentTheme">
|
|
|
|
<a-select-option v-for="s in ['udp','tcp']" :value="s">[[ s ]]</a-select-option>
|
|
|
|
</a-select>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2023-12-05 20:13:36 +03:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<!-- Address + Port -->
|
|
|
|
<template v-if="outbound.hasAddressPort()">
|
2023-12-08 21:45:19 +03:00
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "pages.inbounds.address" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input v-model.trim="outbound.settings.address" style="width: 250px"></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "pages.inbounds.port" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input-number v-model.number="outbound.settings.port" :min="1" :max="65532"></a-input-number>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2023-12-05 20:13:36 +03:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<!-- Vnext (vless/vmess) settings -->
|
|
|
|
<template v-if="[Protocols.VMess, Protocols.VLESS].includes(outbound.protocol)">
|
2023-12-08 21:45:19 +03:00
|
|
|
<tr>
|
|
|
|
<td>ID</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input v-model.trim="outbound.settings.id" style="width: 250px"></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2023-12-05 20:13:36 +03:00
|
|
|
<!-- vless settings -->
|
|
|
|
<template v-if="outbound.canEnableTlsFlow()">
|
2023-12-08 21:45:19 +03:00
|
|
|
<tr>
|
|
|
|
<td>Flow</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-select v-model="outbound.settings.flow" style="width: 250px" :dropdown-class-name="themeSwitcher.currentTheme">
|
|
|
|
<a-select-option value="" selected>{{ i18n "none" }}</a-select-option>
|
|
|
|
<a-select-option v-for="key in TLS_FLOW_CONTROL" :value="key">[[ key ]]</a-select-option>
|
|
|
|
</a-select>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2023-12-05 20:13:36 +03:00
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<!-- Servers (trojan/shadowsocks/socks/http) settings -->
|
|
|
|
<template v-if="outbound.hasServers()">
|
2023-12-08 21:45:19 +03:00
|
|
|
<tr v-if="outbound.hasUsername()">
|
|
|
|
<td>{{ i18n "username" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input v-model.trim="outbound.settings.user" style="width: 250px"></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "password" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input v-model.trim="outbound.settings.password" style="width: 250px"></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2023-12-05 20:13:36 +03:00
|
|
|
<!-- shadowsocks -->
|
|
|
|
<template v-if="outbound.protocol === Protocols.Shadowsocks">
|
2023-12-08 21:45:19 +03:00
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "encryption" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-select v-model="outbound.settings.method" style="width: 250px;" :dropdown-class-name="themeSwitcher.currentTheme">
|
|
|
|
<a-select-option v-for="method in SSMethods" :value="method">[[ method ]]</a-select-option>
|
|
|
|
</a-select>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>UDP over TCP</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-switch v-model="outbound.settings.uot"></a-switch>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2023-12-05 20:13:36 +03:00
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<!-- stream settings -->
|
|
|
|
<template v-if="outbound.canEnableStream()">
|
2023-12-08 21:45:19 +03:00
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "transmission" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-select v-model="outbound.stream.network" @change="streamNetworkChange"
|
|
|
|
style="width: 250px;" :dropdown-class-name="themeSwitcher.currentTheme">
|
|
|
|
<a-select-option value="tcp">TCP</a-select-option>
|
|
|
|
<a-select-option value="kcp">KCP</a-select-option>
|
|
|
|
<a-select-option value="ws">WebSocket</a-select-option>
|
|
|
|
<a-select-option value="http">HTTP2</a-select-option>
|
|
|
|
<a-select-option value="quic">QUIC</a-select-option>
|
|
|
|
<a-select-option value="grpc">gRPC</a-select-option>
|
|
|
|
</a-select>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2023-12-05 20:13:36 +03:00
|
|
|
<template v-if="outbound.stream.network === 'tcp'">
|
2023-12-08 21:45:19 +03:00
|
|
|
<tr>
|
|
|
|
<td>http {{ i18n "camouflage" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-switch
|
|
|
|
:checked="outbound.stream.tcp.type === 'http'"
|
|
|
|
@change="checked => outbound.stream.tcp.type = checked ? 'http' : 'none'">
|
|
|
|
</a-switch>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2023-12-05 20:13:36 +03:00
|
|
|
<template v-if="outbound.stream.tcp.type == 'http'">
|
2023-12-08 21:45:19 +03:00
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "host" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input style="width: 250px;" v-model.trim="outbound.stream.tcp.host"></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "path" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input style="width: 250px;" v-model.trim="outbound.stream.tcp.path"></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2023-12-05 20:13:36 +03:00
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<!-- kcp -->
|
|
|
|
<template v-if="outbound.stream.network === 'kcp'">
|
2023-12-08 21:45:19 +03:00
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "camouflage" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-select v-model="outbound.stream.kcp.type" style="width: 250px;" :dropdown-class-name="themeSwitcher.currentTheme">
|
|
|
|
<a-select-option value="none">none (not camouflage)</a-select-option>
|
|
|
|
<a-select-option value="srtp">srtp (video call)</a-select-option>
|
|
|
|
<a-select-option value="utp">utp (BT download)</a-select-option>
|
|
|
|
<a-select-option value="wechat-video">wechat-video (WeChat video)</a-select-option>
|
|
|
|
<a-select-option value="dtls">dtls (DTLS 1.2 packages)</a-select-option>
|
|
|
|
<a-select-option value="wireguard">wireguard (wireguard packages)</a-select-option>
|
|
|
|
</a-select>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "password" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input v-model="outbound.stream.kcp.seed" style="width: 250px;"></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>mtu</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input-number v-model.number="outbound.stream.kcp.mtu"></a-input-number>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>tti (ms)</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input-number v-model.number="outbound.stream.kcp.tti"></a-input-number>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>uplink capacity (MB/S)</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input-number v-model.number="outbound.stream.kcp.upCap"></a-input-number>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>downlink capacity (MB/S)</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input-number v-model.number="outbound.stream.kcp.downCap"></a-input-number>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>congestion</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-switch v-model="outbound.stream.kcp.congestion"></a-switch>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>read buffer size (MB)</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input-number v-model.number="outbound.stream.kcp.readBuffer"></a-input-number>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>write buffer size (MB)</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input-number v-model.number="outbound.stream.kcp.writeBuffer"></a-input-number>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2023-12-05 20:13:36 +03:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<!-- ws -->
|
|
|
|
<template v-if="outbound.stream.network === 'ws'">
|
2023-12-08 21:45:19 +03:00
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "host" }}</td>
|
|
|
|
<td><a-form-item><a-input style="width: 250px" v-model="outbound.stream.ws.host"></a-input></a-form-item></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "path" }}</td>
|
|
|
|
<td><a-form-item><a-input style="width: 250px;" v-model.trim="outbound.stream.ws.path"></a-input></a-form-item></td>
|
|
|
|
</tr>
|
2023-12-05 20:13:36 +03:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<!-- http -->
|
|
|
|
<template v-if="outbound.stream.network === 'http'">
|
2023-12-08 21:45:19 +03:00
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "host" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input v-model.trim="outbound.stream.http.host" style="width: 250px;"></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "path" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input v-model.trim="outbound.stream.http.path" style="width: 250px;"></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2023-12-05 20:13:36 +03:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<!-- quic -->
|
|
|
|
<template v-if="outbound.stream.network === 'quic'">
|
2023-12-08 21:45:19 +03:00
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "pages.inbounds.stream.quic.encryption" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-select v-model="outbound.stream.quic.security" style="width: 250px;" :dropdown-class-name="themeSwitcher.currentTheme">
|
|
|
|
<a-select-option value="none">none</a-select-option>
|
|
|
|
<a-select-option value="aes-128-gcm">aes-128-gcm</a-select-option>
|
|
|
|
<a-select-option value="chacha20-poly1305">chacha20-poly1305</a-select-option>
|
|
|
|
</a-select>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "password" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input v-model.trim="outbound.stream.quic.key" style="width: 250px;"></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "camouflage" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-select v-model="outbound.stream.quic.type" style="width: 250px;" :dropdown-class-name="themeSwitcher.currentTheme">
|
|
|
|
<a-select-option value="none">none (not camouflage)</a-select-option>
|
|
|
|
<a-select-option value="srtp">srtp (video call)</a-select-option>
|
|
|
|
<a-select-option value="utp">utp (BT download)</a-select-option>
|
|
|
|
<a-select-option value="wechat-video">wechat-video (WeChat video)</a-select-option>
|
|
|
|
<a-select-option value="dtls">dtls (DTLS 1.2 packages)</a-select-option>
|
|
|
|
<a-select-option value="wireguard">wireguard (wireguard packages)</a-select-option>
|
|
|
|
</a-select>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2023-12-05 20:13:36 +03:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<!-- grpc -->
|
|
|
|
<template v-if="outbound.stream.network === 'grpc'">
|
2023-12-08 21:45:19 +03:00
|
|
|
<tr>
|
|
|
|
<td>serviceName</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input v-model.trim="outbound.stream.grpc.serviceName" style="width: 250px;"></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>MultiMode</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-switch v-model="outbound.stream.grpc.multiMode"></a-switch>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2023-12-05 20:13:36 +03:00
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<!-- tls settings -->
|
|
|
|
<template v-if="outbound.canEnableTls()">
|
2023-12-08 21:45:19 +03:00
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "security" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-radio-group v-model="outbound.stream.security" button-style="solid">
|
|
|
|
<a-radio-button value="none">{{ i18n "none" }}</a-radio-button>
|
|
|
|
<a-radio-button value="tls">TLS</a-radio-button>
|
|
|
|
<a-radio-button v-if="outbound.canEnableReality()" value="reality">Reality</a-radio-button>
|
|
|
|
</a-radio-group>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<template v-if="outbound.stream.isTls">
|
|
|
|
<tr>
|
|
|
|
<td>SNI</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item placeholder="Server Name Indication">
|
|
|
|
<a-input v-model.trim="outbound.stream.tls.serverName" style="width: 250px"></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>uTLS</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-select v-model="outbound.stream.tls.fingerprint"
|
|
|
|
style="width: 250px" :dropdown-class-name="themeSwitcher.currentTheme">
|
|
|
|
<a-select-option value=''>None</a-select-option>
|
|
|
|
<a-select-option v-for="key in UTLS_FINGERPRINT" :value="key">[[ key ]]</a-select-option>
|
|
|
|
</a-select>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>ALPN</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-select
|
|
|
|
mode="multiple"
|
|
|
|
style="width: 250px"
|
|
|
|
:dropdown-class-name="themeSwitcher.currentTheme"
|
|
|
|
v-model="outbound.stream.tls.alpn">
|
|
|
|
<a-select-option v-for="alpn in ALPN_OPTION" :value="alpn">[[ alpn ]]</a-select-option>
|
|
|
|
</a-select>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Allow insecure</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-switch v-model="outbound.stream.tls.allowInsecure"></a-switch>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</template>
|
2023-12-05 20:13:36 +03:00
|
|
|
|
2023-12-08 21:45:19 +03:00
|
|
|
<!-- reality settings -->
|
|
|
|
<template v-if="outbound.stream.isReality">
|
|
|
|
<tr>
|
|
|
|
<td>{{ i18n "domainName" }}</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input v-model.trim="outbound.stream.reality.serverName" style="width: 250px"></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>uTLS</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-select v-model="outbound.stream.reality.fingerprint"
|
|
|
|
style="width: 250px" :dropdown-class-name="themeSwitcher.currentTheme">
|
|
|
|
<a-select-option v-for="key in UTLS_FINGERPRINT" :value="key">[[ key ]]</a-select-option>
|
|
|
|
</a-select>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Short Id</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input v-model.trim="outbound.stream.reality.shortId" style="width:250px"></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>SpiderX</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input v-model.trim="outbound.stream.reality.spiderX" style="width:250px"></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Public Key</td>
|
|
|
|
<td>
|
|
|
|
<a-form-item>
|
|
|
|
<a-input v-model.trim="outbound.stream.reality.publicKey" style="width: 250px"></a-input>
|
|
|
|
</a-form-item>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</template>
|
2023-12-05 20:13:36 +03:00
|
|
|
</template>
|
2023-12-08 21:45:19 +03:00
|
|
|
</table>
|
2023-12-05 20:13:36 +03:00
|
|
|
</a-form>
|
|
|
|
</a-tab-pane>
|
|
|
|
<a-tab-pane key="2" tab="JSON" force-render="true">
|
|
|
|
<a-form-item style="margin: 10px 0">
|
|
|
|
Link: <a-input v-model.trim="outModal.link" style="width: 300px; margin-right: 5px;" placeholder="vmess:// vless:// trojan:// ss://"></a-input>
|
|
|
|
<a-button @click="convertLink" type="primary"><a-icon type="form"></a-icon></a-button>
|
|
|
|
</a-form-item>
|
|
|
|
<textarea style="position:absolute; left: -800px;" id="outboundJson"></textarea>
|
|
|
|
</a-tab-pane>
|
|
|
|
</a-tabs>
|
|
|
|
{{end}}
|