forked from Qv2ray/v2ray-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_config.toml
120 lines (99 loc) · 2.22 KB
/
test_config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# default_outbound = "cn"
enable_api_server = true
api_server_addr = "127.0.0.1:1999"
[[ss]]
addr = "127.0.0.1:9000"
password = "123456"
method = "chacha20-poly1305"
tag = "ss0"
[[ss]]
addr = "127.0.0.1:9001"
password = "123456"
method = "chacha20-poly1305"
tag = "ss1"
[[ss]]
addr = "127.0.0.1:9002"
password = "123456"
method = "chacha20-poly1305"
tag = "ss2"
[[ss]]
addr = "127.0.0.1:9004"
password = "123456"
method = "chacha20-poly1305"
tag = "ss3"
[[vmess]]
addr = "127.0.0.1:10002"
uuid = "b831381d-6324-4d53-ad4f-8cda48b30811"
method = "aes-128-gcm"
tag = "v"
[[trojan]]
addr = "127.0.0.1:10003"
password = "password"
tag = "t"
[[ws]]
uri = "ws://127.0.0.1:10002/?ed=2048"
tag = "w"
[[tls]]
sni = "localhost"
cert_file = "cert.pem"
tag = "tls"
[[direct]]
tag = "d"
[[h2]]
tag = "h2"
hosts = ["example.org"]
path = "/test"
[[grpc]]
tag = "grpc"
host = "127.0.0.1:10002"
service_name = "gungungun"
[[outbounds]]
chain = ["tls","v"]
#chain = ["h2","v"]
# chain = ["w","v","ss2"]
# chain = ["t","w","v"]
# chain = ["ss0","ss1","ss2","ss3"]
# chain = ["ss0","ss1","ss2","ss3","w","v"]
# chain = ["ss0"]
# debug
tag = "cn"
[[blackhole]]
tag = "b"
[[outbounds]]
chain = ["d"]
tag = "private"
[[inbounds]]
addr = "127.0.0.1:1087"
enable_udp = true
tag = "mixed"
# [[dokodemo]]
# addr = "127.0.0.1:12345"
# tproxy = true
[[ip_routing_rules]]
tag = "block"
# only block 192.168.0.1 and route 192.168.0.2-192.168.0.254 to other outbounds
cidr_rules = ["192.168.0.1/32"]
[[domain_routing_rules]]
tag = "block"
domain_rules = ["baidu.com"]
# If file path is not provided,
# v2ray-rs will read env varaiable `v2ray.location.asset` or `V2RAY_LOCATION_ASSET` or current exe dir
[[geosite_rules]]
tag = "cn"
# file_path = "your_custom_geosite_file_path"
rules = ["cn"]
# If file path is not provided,
# v2ray-rs will read env varaiable `v2ray.location.asset` or `V2RAY_LOCATION_ASSET` or current exe dir
[[geoip_rules]]
tag = "cn"
# file_path = "your_custom_geoip_file_path"
rules = ["cn"]
# If file path is not provided,
# v2ray-rs will read env varaiable `v2ray.location.asset` or `V2RAY_LOCATION_ASSET` or current exe dir
[[geoip_rules]]
tag="private"
# file_path = "your_custom_geoip_file_path"
rules = ["private"]
[[outbounds]]
chain = ["b"]
tag = "block"