You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
原有方案:
服务端:shadowsocks-libev + v2ray-plugin
CDN:Cloudflare
客户端:SSRP/Openwrt
shadowsocks-windows/Windows
Shadowrocket/IOS
其中v2ray-plugin 用的是 Shadowsocks over websocket (HTTPS),https://github.com/shadowsocks/v2ray-plugin
这个模式在gpt之前一直很稳定。为了访问gpt,引入了Cloudflare WARP。
当前:
服务端配置v2fly/v2ray-core,Vmess + outbounds规则配置,解决了gpt的问题,但是服务器有点臃肿。
习惯了shadowsocks-windows和shadowrocket,还不想把客户端切到v2rayN,想问一下:
v2ray-core server配置:
"inbounds":[
{
"port": 10000,
"protocol":"shadowsocks",
"settings":{
"method": "aes-256-gcm",
"password": "password"
},
"streamSettings":{
"network":"ws",
"wsSettings":{
"path":"/"
}
},
"sniffing": {
"enabled": true,
"destOverride": ["http", "tls"]
}
}
],
"outbounds":[
{
"protocol":"freedom",
"tag":"direct"
},
{
"tag": "warp",
"protocol": "socks",
"settings": {
"servers": [
{
"address": "127.0.0.1",
"port": 1958,
"users": []
}
]
}
},
{
"protocol":"blackhole",
"tag":"block"
}
],
"routing": {
"rules": [
{
"type": "field",
"domain": [
"openai.com",
"ai.com",
"geosite:netflix"
],
"outboundTag": "warp"
}
]
}
shadowsocks-windows客户端配置
{
"server": "domain.com",
"server_port": 443,
"password": "password",
"method": "aes-256-gcm",
"plugin": "v2ray-plugin_windows_amd64",
"plugin_opts": "tls;host=domain.com;path=/",
"timeout": 5,
"warnLegacyUrl": false
}
Beta Was this translation helpful? Give feedback.
All reactions