v2ray-examples/Shadowsocks/config_cilent.json
2020-07-31 18:53:15 +08:00

45 lines
772 B
JSON
Executable File

{
"log": {
"access": "",
"error": "",
"loglevel": "debug"
},
"inbound": {
"port": 8080,
"listen": "127.0.0.1",
"protocol": "socks",
"settings": {
"auth": "noauth"
}
},
"outbound":{
"protocol": "shadowsocks",
"settings": {
"servers": [
{
"address": "servser.org",
"method": "aes-256-cfb",
"ota": false,
"password": "password",
"port": 443
}
]
},
"streamSettings":{
"network":"kcp",
"kcpSettings": {
"mtu": 1350,
"tti": 20,
"uplinkCapacity": 10,
"downlinkCapacity": 100,
"congestion": false,
"readBufferSize": 1,
"writeBufferSize": 1,
"header": {
"type": "none"
}
}
}
}
}