mirror of
https://github.com/v2fly/v2ray-examples.git
synced 2025-04-03 09:39:29 +08:00
92 lines
2.4 KiB
JSON
92 lines
2.4 KiB
JSON
{
|
|
"log": {
|
|
"loglevel": "warning"
|
|
},
|
|
"inbounds": [
|
|
{
|
|
"port": 443,
|
|
"protocol": "vless",
|
|
"settings": {
|
|
"clients": [
|
|
{
|
|
"id": "//用户 UUID",
|
|
"level": 0,
|
|
"email": "//用户名"
|
|
}
|
|
],
|
|
"decryption": "none",
|
|
"fallbacks": [
|
|
{
|
|
"dest": "web_server:port" // 回落网站
|
|
},
|
|
{
|
|
"alpn": "h2",
|
|
"path": "/path/to/gRPC/Tun", // gRPC 路径
|
|
"dest": 1234
|
|
}
|
|
]
|
|
},
|
|
"streamSettings": {
|
|
"network": "tcp",
|
|
"security": "tls",
|
|
"tlsSettings": {
|
|
"alpn": [
|
|
"h2",
|
|
"http/1.1"
|
|
],
|
|
"certificates": [
|
|
{
|
|
"certificateFile": "/path/to/fullchain.crt", // 证书绝对路径
|
|
"keyFile": "/path/to/private.key" // 私钥绝对路径
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"port": 1234,
|
|
"listen": "127.0.0.1",
|
|
"protocol": "vless",
|
|
"settings": {
|
|
"clients": [
|
|
{
|
|
"id": "//用户 UUID",
|
|
"level": 0,
|
|
"email": "//用户名"
|
|
}
|
|
],
|
|
"decryption": "none"
|
|
},
|
|
"streamSettings": {
|
|
"network": "gun",
|
|
"security": "none",
|
|
"grpcSettings": {
|
|
"serviceName": "path/to/gRPC", // gRPC 服务名称
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"outbounds": [
|
|
{
|
|
"protocol": "freedom",
|
|
"tag": "direct"
|
|
},
|
|
{
|
|
"protocol": "blackhole",
|
|
"tag": "block"
|
|
}
|
|
],
|
|
"routing": {
|
|
"domainStrategy": "AsIs",
|
|
"rules": [
|
|
{
|
|
"type": "field",
|
|
"ip": [
|
|
"geoip:private"
|
|
],
|
|
"outboundTag": "block"
|
|
}
|
|
]
|
|
}
|
|
}
|