|
bash <(curl -L https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh)
cat /usr/local/etc/v2ray/config.json
{
&#34;log&#34;: {
&#34;access&#34;: &#34;/var/log/v2ray/access.log&#34;,
&#34;error&#34;: &#34;/var/log/v2ray/error.log&#34;,
&#34;loglevel&#34;: &#34;warning&#34;
},
&#34;inbounds&#34;: [{
&#34;port&#34;: 11055,
&#34;protocol&#34;: &#34;vmess&#34;,
&#34;settings&#34;: {
&#34;clients&#34;: [{
&#34;id&#34;: &#34;27848739-7e62-4138-9fd3-098a63964b6b&#34;,
&#34;level&#34;: 1,
&#34;alterId&#34;: 0
}
]
},
&#34;streamSettings&#34;: {
&#34;network&#34;: &#34;ws&#34;,
&#34;wsSettings&#34;: {
&#34;path&#34;: &#34;/tech&#34;
}
}
}
],
&#34;outbounds&#34;: [{
&#34;protocol&#34;: &#34;freedom&#34;
}
]
}
Windows客户端配置

{
&#34;log&#34;: {
&#34;access&#34;: &#34;&#34;,
&#34;error&#34;: &#34;&#34;,
&#34;loglevel&#34;: &#34;warning&#34;
},
&#34;inbounds&#34;: [
{
&#34;tag&#34;: &#34;socks&#34;,
&#34;port&#34;: 10808,
&#34;listen&#34;: &#34;127.0.0.1&#34;,
&#34;protocol&#34;: &#34;socks&#34;,
&#34;sniffing&#34;: {
&#34;enabled&#34;: true,
&#34;destOverride&#34;: [
&#34;http&#34;,
&#34;tls&#34;
],
&#34;routeOnly&#34;: false
},
&#34;settings&#34;: {
&#34;auth&#34;: &#34;noauth&#34;,
&#34;udp&#34;: true,
&#34;allowTransparent&#34;: false
}
},
{
&#34;tag&#34;: &#34;http&#34;,
&#34;port&#34;: 10809,
&#34;listen&#34;: &#34;127.0.0.1&#34;,
&#34;protocol&#34;: &#34;http&#34;,
&#34;sniffing&#34;: {
&#34;enabled&#34;: true,
&#34;destOverride&#34;: [
&#34;http&#34;,
&#34;tls&#34;
],
&#34;routeOnly&#34;: false
},
&#34;settings&#34;: {
&#34;auth&#34;: &#34;noauth&#34;,
&#34;udp&#34;: true,
&#34;allowTransparent&#34;: false
}
}
],
&#34;outbounds&#34;: [
{
&#34;tag&#34;: &#34;proxy&#34;,
&#34;protocol&#34;: &#34;vmess&#34;,
&#34;settings&#34;: {
&#34;vnext&#34;: [
{
&#34;address&#34;: &#34;18.xxx.xxx.140&#34;,
&#34;port&#34;: 11XX5,
&#34;users&#34;: [
{
&#34;id&#34;: &#34;27848739-7e62-4138-9fd3-098a63964b6b&#34;,
&#34;alterId&#34;: 0,
&#34;email&#34;: &#34;t@t.tt&#34;,
&#34;security&#34;: &#34;auto&#34;
}
]
}
]
},
&#34;streamSettings&#34;: {
&#34;network&#34;: &#34;ws&#34;,
&#34;wsSettings&#34;: {
&#34;path&#34;: &#34;/tech&#34;
}
},
&#34;mux&#34;: {
&#34;enabled&#34;: false,
&#34;concurrency&#34;: -1
}
},
{
&#34;tag&#34;: &#34;direct&#34;,
&#34;protocol&#34;: &#34;freedom&#34;,
&#34;settings&#34;: {}
},
{
&#34;tag&#34;: &#34;block&#34;,
&#34;protocol&#34;: &#34;blackhole&#34;,
&#34;settings&#34;: {
&#34;response&#34;: {
&#34;type&#34;: &#34;http&#34;
}
}
}
],
&#34;routing&#34;: {
&#34;domainStrategy&#34;: &#34;AsIs&#34;,
&#34;rules&#34;: [
{
&#34;type&#34;: &#34;field&#34;,
&#34;inboundTag&#34;: [
&#34;api&#34;
],
&#34;outboundTag&#34;: &#34;api&#34;,
&#34;enabled&#34;: true
},
{
&#34;id&#34;: &#34;4619453298807112690&#34;,
&#34;type&#34;: &#34;field&#34;,
&#34;outboundTag&#34;: &#34;direct&#34;,
&#34;domain&#34;: [
&#34;domain:example-example.com&#34;,
&#34;domain:example-example2.com&#34;
],
&#34;enabled&#34;: true
},
{
&#34;id&#34;: &#34;4818626002316740916&#34;,
&#34;type&#34;: &#34;field&#34;,
&#34;outboundTag&#34;: &#34;block&#34;,
&#34;domain&#34;: [
&#34;geosite:category-ads-all&#34;
],
&#34;enabled&#34;: true
},
{
&#34;id&#34;: &#34;5006432695645714475&#34;,
&#34;type&#34;: &#34;field&#34;,
&#34;outboundTag&#34;: &#34;direct&#34;,
&#34;domain&#34;: [
&#34;geosite:cn&#34;
],
&#34;enabled&#34;: true
},
{
&#34;id&#34;: &#34;5399618376056659150&#34;,
&#34;type&#34;: &#34;field&#34;,
&#34;outboundTag&#34;: &#34;direct&#34;,
&#34;ip&#34;: [
&#34;geoip:private&#34;,
&#34;geoip:cn&#34;
],
&#34;enabled&#34;: true
},
{
&#34;id&#34;: &#34;4933551338135537150&#34;,
&#34;type&#34;: &#34;field&#34;,
&#34;port&#34;: &#34;0-65535&#34;,
&#34;outboundTag&#34;: &#34;proxy&#34;,
&#34;enabled&#34;: true
}
]
}
} |
|