|
发表于 2024-10-18 12:57:51
|
显示全部楼层
以下是对应的 V2Ray 客户端 JSON 配置:
- {
- "inbounds": [
- {
- "port": 1080,
- "listen": "127.0.0.1",
- "protocol": "socks",
- "settings": {
- "auth": "noauth",
- "udp": true,
- "ip": "127.0.0.1"
- }
- }
- ],
- "outbounds": [
- {
- "protocol": "shadowsocks",
- "settings": {
- "servers": [
- {
- "address": "server",
- "port": 443,
- "method": "chacha20-ietf-poly1305",
- "password": "password"
- }
- ]
- },
- "streamSettings": {
- "network": "ws",
- "security": "tls",
- "wsSettings": {
- "path": "/"
- },
- "tlsSettings": {
- "allowInsecure": false
- }
- }
- }
- ]
- }
复制代码
|
|