xray配置文件 使用shadowsocks 代理
在 xray 的配置文件中,需要添加以下内容来使用 shadowsocks 代理:
{
"inbounds": [
{
"port": 1080, // 入站监听端口
"protocol": "socks", // 入站协议,这里使用 socks5
"sniffing": {
"enabled": true, // 开启流量自动识别
"destOverride": ["http", "tls"] // 自动识别的协议类型
},
"settings": {
"auth": "noauth" // socks5 鉴权方式,默认 noauth
}
}
],
"outbounds": [
{
"protocol": "vmess", // 出站协议,这里使用 vmess
"settings": {
"vnext": [
{
"address": "your_server_address", // 服务器地址
"port": 443, // 服务器端口
"users": [
{
"id": "your_uuid", // 用户 ID
"alterId": 64 // 随机数
}
]
}
],
"streamSettings": {
"network": "tcp", // 传输协议,这里使用 tcp
"security": "tls", // 应用层加密方式,这里使用 tls
"tlsSettings": {
"serverName": "your_server_name" // 服务器域名
}
}
},
"tag": "proxy" // 标签,用于匹配路由规则
}
],
"routing": {
"rules": [
{
"type": "field", // 路由规则类型,这里使用 field
"outboundTag": "proxy", // 匹配标签
"domain": ["geosite:netflix"] // 规则条件,这里使用 geosite,匹配 Netflix
}
]
}
}
其中,your_server_address、your_uuid 和 your_server_name 需要替换成你自己的服务器地址、UUID 和域名。
配置完成后,你需要启动 shadowsocks 代理,并将代理地址和端口设置为 127.0.0.1:1080。
在浏览器中访问 Netflix,应该就能够正常使用了
原文地址: https://www.cveoy.top/t/topic/fFDC 著作权归作者所有。请勿转载和采集!