我想使用 squid 代理在 2 个服务器之间建立 http 代理。我的一个 vps(编号 1)在伊朗(centos 7),另一个(编号 2)在其他国家。我在 vps 2 上安装了 squid 代理,在 vps 1 上安装了 v2ray。我像这样配置 v2ray 出站:
{
"log": {
"loglevel": "warning",
"access": "./access.log"
},
"api": {
"services": [
"HandlerService",
"LoggerService",
"StatsService"
],
"tag": "api"
},
"inbounds": [
{
"listen": "127.0.0.1",
"port": 62789,
"protocol": "dokodemo-door",
"settings": {
"address": "127.0.0.1"
},
"tag": "api"
}
],
"outbounds": [
{
"protocol": "vmess",
"settings": {
"vnext": [
{
"address": "1.1.1.1",
"port": 8888,
"users": [
{
"alterId": 64,
"id": "b12614c5-5ca4-4eba-a215-c61d642116ce"
}
]
}
]
},
"tag": "VMESS",
"proxySettings": {
"tag": "HTTP"
}
},
{
"protocol": "http",
"settings": {
"servers": [
{
"address": "my ip vps2",
"port": 3128,
"users": [
{
"user": "username",
"pass": "password"
}
]
}
]
},
"tag": "HTTP"
}
,
{
"protocol": "freedom",
"settings": {}
},
{
"protocol": "blackhole",
"settings": {},
"tag": "blocked"
}
],
"policy": {
"levels": {
"0": {
"statsUserUplink": true,
"statsUserDownlink": true
}
},
"system": {
"statsInboundDownlink": true,
"statsInboundUplink": true
}
},
"routing": {
"rules": [
{
"inboundTag": [
"api"
],
"outboundTag": "api",
"type": "field"
},
{
"ip": [
"geoip:private"
],
"outboundTag": "blocked",
"type": "field"
},
{
"outboundTag": "blocked",
"protocol": [
"bittorrent"
],
"type": "field"
}
]
},
"stats": {}
}
但是当我在 v2ray 中创建帐户时,它不起作用并且失败了。请帮我使用 squid 代理和 v2ray 脚本创建一个代理来绕过伊朗的互联网审查。谢谢你的帮助。