|
colla 发表于 2023-5-28 15:16
rules数组最前面加这个
outbound里面加一项这个
给大佬附上目前的服务器配置
[ol]{
"inbounds": [
{
"port": 25565, // 服务器监听端口
"protocol": "vmess", // 主传入协议
"settings": {
"clients": [
{
"id": " UUID",
"alterId": 0
}
]
}
}
],
"outbounds": [
{
"protocol": "freedom", // 主传出协议
"settings": {}
},
{
"protocol": "blackhole",
"settings": {},
"tag": "blackhole"
}
],
"routing": {
"rules": [
{
"type": "field",
"protocol": ["http", "tls", "bittorrent"],
"outboundTag": "blackhole"
}
]
}
}[/ol]复制代码 |
|