-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.json
55 lines (55 loc) · 1.07 KB
/
config.json
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
{
"input": [
{
"type": "text",
"action": "add",
"args": {
"name": "antifilter-ip",
"uri": "/var/www/allyouneed.lst",
"onlyIPType": "ipv4"
}
},
{
"type": "text",
"action": "add",
"args": {
"name": "antifilter-community-ip",
"uri": "/var/www/community.lst",
"onlyIPType": "ipv4"
}
},
{
"type": "text",
"action": "add",
"args": {
"name": "proxy-ip",
"uri": "/var/www/proxy-ip",
"onlyIPType": "ipv4"
}
},
{
"type": "text",
"action": "add",
"args": {
"name": "direct-ip",
"uri": "/var/www/direct-ip",
"onlyIPType": "ipv4"
}
},
{
"type": "private",
"action": "add"
}
],
"output": [
{
"type": "v2rayGeoIPDat",
"action": "output",
"args": {
"outputDir": "/var/www",
"outputName": "geoip.dat",
"wantedList": ["antifilter-ip", "antifilter-community-ip", "proxy-ip", "direct-ip", "private"]
}
}
]
}