安装 V2ray:
bash <(curl -s -L https://git.io/v2ray.sh)
如果报错可能是你 VPS 系统没有安装 curl
CentOS 安装:yum update -y && yum install curl -y
Debian/Ubuntu 安装:apt-get update -y && apt-get install curl –
y
根据提示安装,选择 WebSocket + TLS,自定义端口号,与宝塔面板配置文件中的端口号一致
修改宝塔配置文件,在合适的地方添加:
location /test { # 准备设置的路径 proxy_pass http://127.0.0.1:12345; # V2ray 中设置的端口 proxy_redirect off; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_set_header Host $http_host; }
修改 V2ray 配置
在 V2ray 配置文件中(一般在 /etc/v2ray/config.json)定位到 streamSettings ,然后追加成类似下面的配置:
客户端设置:
参考/etc/v2ray/config.json脚本下载