0
0
mirror of https://github.com/XTLS/Xray-examples.git synced 2025-08-22 14:38:36 +00:00
XTLS_Xray-examples/Trojan-TCP-TLS (minimal)/config_client.jsonc
2025-06-04 09:30:44 +08:00

33 lines
719 B
Plaintext

{
"log": {
"loglevel": "warning"
},
"inbounds": [
{
"port": 10800,
"listen": "::1",
"protocol": "socks",
"settings": {
"udp": true
}
}
],
"outbounds": [
{
"protocol": "trojan",
"settings": {
"servers": [
{
"address": "example.com",
"port": 443,
"password": "your password"
}
]
},
"streamSettings": {
"network": "tcp",
"security": "tls"
}
}
]
}