forked from kuoruan/openwrt-v2ray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfig-mini.in
168 lines (126 loc) · 3.66 KB
/
Config-mini.in
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
menu "V2Ray Mini Configuration"
depends on PACKAGE_v2ray-core-mini
config PACKAGE_v2ray_mini_exclude_assets
bool "Exclude geoip.dat & geosite.dat"
default y
config PACKAGE_v2ray_mini_compress_upx
bool "Compress executable files with UPX"
default y
config PACKAGE_v2ray_mini_enable_features
bool "Enable Features"
default n
menu "Enable Features Configuration"
depends on PACKAGE_v2ray_mini_enable_features
# Subscription Supports
config PACKAGE_v2ray_min_with_subscription_support
bool "With Subscription Supports"
default n
# Developer preview services
config PACKAGE_v2ray_min_with_instman
bool "With Instance Management"
default n
config PACKAGE_v2ray_min_with_observatory
bool "With Observatory"
default n
# Developer preview features
config PACKAGE_v2ray_main_with_restfulapi
bool "With RESTful API"
default n
config PACKAGE_v2ray_mini_with_tun
bool "With TUN Support"
default n
# Developer preview proxies
config PACKAGE_v2ray_mini_with_vlite_proto
bool "With VLite Protocol"
default n
config PACKAGE_v2ray_mini_with_shadowsocks2022_proto
bool "With Shadowsocks2022 Protocol"
default n
endmenu
config PACKAGE_v2ray_mini_disable_features
bool "Disable Features"
default n
menu "Disable Features Configuration"
depends on PACKAGE_v2ray_mini_disable_features
config PACKAGE_v2ray_mini_without_dns
bool "Without Internal DNS Support"
default n
config PACKAGE_v2ray_mini_without_fakedns
bool "Without Fake DNS Support"
depends on !PACKAGE_v2ray_mini_without_dns
config PACKAGE_v2ray_mini_without_log
bool "Without Log Support"
default n
config PACKAGE_v2ray_mini_without_policy
bool "Without Local Policy Support"
default n
config PACKAGE_v2ray_mini_without_reverse
bool "Without Reverse Proxy Support"
default n
config PACKAGE_v2ray_mini_without_routing
bool "Without Internal Routing Support"
default n
config PACKAGE_v2ray_mini_without_statistics
bool "Without Statistics Support"
default n
# Inbound and outbound proxies
config PACKAGE_v2ray_mini_without_blackhole_proto
bool "Without Blackhole Protocol"
default n
config PACKAGE_v2ray_mini_without_dns_proxy
bool "Without DNS Proxy"
default n
config PACKAGE_v2ray_mini_without_dokodemo_proto
bool "Without Dokodemo-door Protocol"
default n
config PACKAGE_v2ray_mini_without_freedom_proto
bool "Without Freedom Protocol"
default n
config PACKAGE_v2ray_mini_without_http_proto
bool "Without HTTP Protocol"
default n
config PACKAGE_v2ray_mini_without_shadowsocks_proto
bool "Without Shadowsocks Protocol"
default n
config PACKAGE_v2ray_mini_without_socks_proto
bool "Without Socks Protocol"
default n
config PACKAGE_v2ray_mini_without_trojan_proto
bool "Without Trojan Protocol"
default n
config PACKAGE_v2ray_min_without_vless_proto
bool "Without VLESS Protocol"
default n
config PACKAGE_v2ray_mini_without_vmess_proto
bool "Without VMess Protocol"
default n
# Transports
config PACKAGE_v2ray_mini_without_tcp_trans
bool "Without TCP Transport"
default n
config PACKAGE_v2ray_mini_without_udp_trans
bool "Without UDP Transport"
default n
config PACKAGE_v2ray_mini_without_domain_socket_trans
bool "Without Domain Socket Transport"
default n
config PACKAGE_v2ray_mini_without_grpc_trans
bool "Without gRPC Transport"
default n
config PACKAGE_v2ray_mini_without_http2_trans
bool "Without HTTP/2 Transport"
default n
config PACKAGE_v2ray_mini_without_mkcp_trans
bool "Without mKCP Transport"
default n
config PACKAGE_v2ray_mini_without_quic_trans
bool "Without QUIC Transport"
default n
config PACKAGE_v2ray_mini_without_websocket_trans
bool "Without WebSocket Transport"
default n
config PACKAGE_v2ray_mini_without_v5cfg
bool "Without V5 Configuration"
default n
endmenu
endmenu