mirror of
https://github.com/Loyalsoldier/v2ray-rules-dat.git
synced 2024-11-10 02:55:34 +08:00
Add configuration code type & explanation
This commit is contained in:
parent
546547e7ae
commit
bb36e65e02
@ -127,7 +127,7 @@
|
|||||||
- 最后,不命中任何路由规则的请求和流量,统统走代理
|
- 最后,不命中任何路由规则的请求和流量,统统走代理
|
||||||
- `outbounds` 里的第一个大括号内的配置,即为 V2Ray 代理服务的配置。请根据自身需求进行修改,并参照 V2Ray 官网配置说明中的 [配置文件 > 文件格式 > OutboundObject](https://v2ray.com/chapter_02/01_overview.html#outboundobject) 部分进行补全
|
- `outbounds` 里的第一个大括号内的配置,即为 V2Ray 代理服务的配置。请根据自身需求进行修改,并参照 V2Ray 官网配置说明中的 [配置文件 > 文件格式 > OutboundObject](https://v2ray.com/chapter_02/01_overview.html#outboundobject) 部分进行补全
|
||||||
|
|
||||||
```
|
```json
|
||||||
{
|
{
|
||||||
"log": {
|
"log": {
|
||||||
"loglevel": "warning"
|
"loglevel": "warning"
|
||||||
@ -181,9 +181,11 @@
|
|||||||
],
|
],
|
||||||
"outbounds": [
|
"outbounds": [
|
||||||
{
|
{
|
||||||
"protocol": "协议名称", // 协议名称为 socks、shadowsocks、vmess 等
|
// 下面这行,协议名称为 socks、shadowsocks 或 vmess 等(记得删除这行文字说明)
|
||||||
|
"protocol": "协议名称",
|
||||||
"settings": {},
|
"settings": {},
|
||||||
"tag": "Proxy", // 这里必须为 Proxy,对应 Routing 里的 outboundTag
|
// 下面这行,必须为 Proxy,对应 Routing 里的 outboundTag(记得删除这行文字说明)
|
||||||
|
"tag": "Proxy",
|
||||||
"streamSettings": {},
|
"streamSettings": {},
|
||||||
"mux": {}
|
"mux": {}
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user