Fallback to Trojan by default

This commit is contained in:
RPRX 2020-11-05 15:10:19 +00:00 committed by GitHub
parent 427417cb76
commit 876a662b5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 69 additions and 2 deletions

View File

@ -9,7 +9,10 @@
3. VLESS over WS with TLS 3. VLESS over WS with TLS
4. VMess over TCP with TLS 4. VMess over TCP with TLS
5. VMess over WS with TLS 5. VMess over WS with TLS
6. Trojan over TCP with TLS
--- ---
这里设置默认回落到 V2Ray 的 Trojan 协议,再继续回落到 80 端口的 Web 服务器也可以换成数据库、FTP 等)
你还可以配置回落到 Caddy 的 forwardproxy 等其它也防探测的代理,以及分流到任何支持 WebSocket 的代理,都没有问题 你还可以配置回落到 Caddy 的 forwardproxy 等其它也防探测的代理,以及分流到任何支持 WebSocket 的代理,都没有问题

View File

@ -0,0 +1,37 @@
{
"log": {
"loglevel": "warning"
},
"inbounds": [
{
"port": 10800,
"listen": "127.0.0.1",
"protocol": "socks",
"settings": {
"udp": true
}
}
],
"outbounds": [
{
"protocol": "trojan",
"settings": {
"vnext": [
{
"address": "example.com", // IP
"port": 443,
"password": "", //
"level": 0
}
]
},
"streamSettings": {
"network": "tcp",
"security": "tls",
"tlsSettings": {
"serverName": "example.com" //
}
}
}
]
}

View File

@ -18,7 +18,8 @@
"decryption": "none", "decryption": "none",
"fallbacks": [ "fallbacks": [
{ {
"dest": 80 // "dest": 1310, // V2Ray Trojan
"xver": 1
}, },
{ {
"path": "/websocket", // PATH "path": "/websocket", // PATH
@ -53,6 +54,32 @@
} }
} }
}, },
{
"port": 1310,
"listen": "127.0.0.1",
"protocol": "trojan",
"settings": {
"clients": [
{
"password": "", //
"level": 0,
"email": "love@v2fly.org"
}
],
"fallbacks": [
{
"dest": 80 //
}
]
},
"streamSettings": {
"network": "tcp",
"security": "none",
"tcpSettings": {
"acceptProxyProtocol": true
}
}
},
{ {
"port": 1234, "port": 1234,
"listen": "127.0.0.1", "listen": "127.0.0.1",