V2Ray global proxy:修订间差异
标签:2017版源代码编辑 |
小无编辑摘要 标签:2017版源代码编辑 |
||
(未显示同一用户的1个中间版本) | |||
第1行: | 第1行: | ||
= Install V2Ray = | = Install V2Ray (Server side) = | ||
== Install == | |||
https://github.com/v2fly/fhs-install-v2ray | https://github.com/v2fly/fhs-install-v2ray | ||
第14行: | 第15行: | ||
A unified platform for anti-censorship. | A unified platform for anti-censorship. | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== Basic Config == | |||
<syntaxhighlight lang="json"> | |||
{ | |||
"inbounds": [{ | |||
"port": 10086, | |||
"protocol": "vmess", | |||
"settings": { | |||
"clients": [{ "id": "b831381d-6324-4d53-ad4f-8cda48b30811" }] | |||
} | |||
}], | |||
"outbounds": [{ | |||
"protocol": "freedom", | |||
"settings": {} | |||
}] | |||
} | |||
</syntaxhighlight> | |||
restart v2ray server: | |||
sudo systemctl restart v2ray | |||
== V2RayU Client == | |||
Configure -> add v2ray server, input ip/port and client id. | |||
[[Category:Linux/Unix]] | [[Category:Linux/Unix]] |
2024年11月28日 (四) 15:27的最新版本
Install V2Ray (Server side)
Install
https://github.com/v2fly/fhs-install-v2ray
sudo su -
bash <(curl -L https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh)
systemctl enable v2ray
systemctl start v2ray
bash <(curl -L https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-dat-release.sh)
v2ray version
V2Ray 5.22.0 (V2Fly, a community-driven edition of V2Ray.) Custom (go1.23.2 linux/amd64)
A unified platform for anti-censorship.
Basic Config
{
"inbounds": [{
"port": 10086,
"protocol": "vmess",
"settings": {
"clients": [{ "id": "b831381d-6324-4d53-ad4f-8cda48b30811" }]
}
}],
"outbounds": [{
"protocol": "freedom",
"settings": {}
}]
}
restart v2ray server:
sudo systemctl restart v2ray
V2RayU Client
Configure -> add v2ray server, input ip/port and client id.