Skip to content

Instantly share code, notes, and snippets.

@Ehekatl
Created December 30, 2016 08:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ehekatl/dbaaa9249f6ff01f7d37c54b3a48d35d to your computer and use it in GitHub Desktop.
Save Ehekatl/dbaaa9249f6ff01f7d37c54b3a48d35d to your computer and use it in GitHub Desktop.
v2ray server
{
"log": {
"access": "/var/log/v2ray/access.log",
"error": "/var/log/v2ray/error.log",
"loglevel": "warning"
},
"inbound": {
"port": 443,
"protocol": "vmess",
"settings": {
"clients": [{
"id": "",
"level": 1,
"alterId": 20
}]
},
"streamSettings": {
"network": "kcp"
}
},
"inboundDetour": [{
"port": 443,
"protocol": "vmess",
"settings": {
"clients": [{
"id": "",
"level": 1,
"alterId": 20
}]
}
}, {
"protocol": "shadowsocks",
"port": ,
"settings": {
"method": "aes-128-cfb",
"password": "",
"udp": true,
"level": 1
}
}],
"outbound": {
"protocol": "freedom",
"settings": {}
},
"transport": {
"tcpSettings": {
"connectionReuse": false
},
"kcpSettings": {
"mtu": 1350,
"tti": 50,
"uplinkCapacity": 500,
"downlinkCapacity": 500,
"congestion": false,
"readBufferSize": 10,
"writeBufferSize": 10,
"header": {
"type": "none"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment