Skip to content

Instantly share code, notes, and snippets.

@bzdk
Created June 12, 2019 05:43
Show Gist options
  • Save bzdk/2ef5b8abbb2673ce06d974e7cb140564 to your computer and use it in GitHub Desktop.
Save bzdk/2ef5b8abbb2673ce06d974e7cb140564 to your computer and use it in GitHub Desktop.
v2ray relay config
{
"inbounds": [{
"tag": "vmess-in",
"port": 10000,
"listen":"127.0.0.1",
"protocol": "vmess",
"settings": {
"clients": [
{
"id": "b70b1773-3718-4236-b842-a9252cd8d53a",
"level": 1,
"security": "chacha20-poly1305",
"alterId": 64
}
]
},
"streamSettings": {
"network": "ws",
"wsSettings": {
"path": "/ray"
}
}
}],
"outbounds": [{
"tag": "vmess-out",
"protocol": "vmess",
"settings": {
"vnext": [
{
"address": "eudlsoertr.live",
"port": 443,
"users": [
{
"alterId": 64,
"id": "b70b1773-3718-4236-b842-a9252cd8d53a",
"level": 1,
"security": "chacha20-poly1305"
}
]
}
]
},
"streamSettings": {
"network": "ws",
"security": "tls",
"tlssettings": {
"allowInsecure": true,
"serverName": "eudlsoertr.live"
},
"wssettings": {
"connectionReuse": true,
"headers": {
"Host": "eudlsoertr.live"
},
"path": "/ray"
}
}
}],
"routing": {
"rules": [
{
"type": "field",
"inboundTag": ["vmess-in"],
"outboundTag": "vmess-out"
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment