Skip to content

在手机上直接使用 https proxy 服务

Jack edited this page Aug 18, 2024 · 2 revisions

手机上 v2rayNG 属于用的最为广泛的客户端,虽然也支持 https proxy,但是非常不稳定,app 在服务启动后会间隙性重启,通过各方尝试,只有 surfboard 这款软件对 https proxy 支持的最好。

surfboard 的配置也比较简单,下面是一个配置示例:

[General]
dns-server = system, 8.8.8.8, 8.8.4.4, 9.9.9.9:9953
skip-proxy = 127.0.0.1, 192.168.0.0/16, 10.0.0.0/8, 172.16.0.0/12, 100.64.0.0/10, localhost, *.local, www.baidu.com
proxy-test-url = http://www.gstatic.com/generate_204
always-real-ip = *.srv.nintendo.net, *.stun.playstation.net, xbox.*.microsoft.com, *.xboxlive.com

[Proxy]
On = direct
Off = reject
ProxyHTTPS = https, proxy.example.com, 443, jack, 1111, skip-cert-verify=false, sni=proxy.example.com

[Rule]
GEOIP,CN,DIRECT
IP-CIDR,192.168.0.0/16,DIRECT
FINAL,ProxyHTTPS

其中 Rule 很简单,就是国家代号 CN (中国) 的 IP 直接连接,192.168.0.0/16 局域网 IP 也直接连接,除此之外,全都走 ProxyHTTPS

基本上这样配置下来,就可以正常使用了

Clone this wiki locally