Multi-protocol proxy client (shadowsocks, vmess, vless, trojan) with TUN support and integrated DNS powered by mini-dns. DNS features via mini-dns: - Split routing: CN domains → local DNS, foreign → remote DNS - Multi-upstream concurrent queries per group - Remote DNS routed through proxy outbound nodes (DialFunc injection) - Pollution filtering, TTL cache with prefetch/serve-stale - Optional DNS listener (UDP/TCP) alongside embedded Exchange() API
22 lines
385 B
JSON
22 lines
385 B
JSON
{
|
|
"log": { "level": "info" },
|
|
"inbounds": [
|
|
{
|
|
"type": "mixed",
|
|
"tag": "mixed-in",
|
|
"listen": "127.0.0.1",
|
|
"listen_port": 11080
|
|
}
|
|
],
|
|
"outbounds": [
|
|
{
|
|
"type": "shadowsocks",
|
|
"tag": "to-mini-sing",
|
|
"server": "127.0.0.1",
|
|
"server_port": 18399,
|
|
"method": "aes-256-gcm",
|
|
"password": "mini-sing-test"
|
|
}
|
|
]
|
|
}
|