解决 开代理后Overleaf文档编辑无法打开

2022-08-19 Views 科技387字2 min read

其实这个问题困扰我很久了,但一直苦于没有合适的关键词搜索问题来解决

今早问了师兄,猜测可能是代理的分流问题
想着要不学者试试编辑分流规则,但简单搜了一下有点看不进去,头大
然后再搜搜 clashx "overleaf" 不走代理
竟然找到了和我同病相怜的小伙伴(这里附上链接🔗

而且看到网友说

如果使用safari:
不管clashx是处在global/rule/direct中哪个状态,都打不开(卡在loading一半的地方; "Unable to connect, please view the connection problems guide to fix the issue.");
除非关闭 "设置为系统代理",就可以打开。
如果使用chrome: 以上各种情况下都可以正常打开。

然后我去试了一次,真的如此。

紧接着根据另一位网友的操作完美解决了困扰已久的这个问题。

edit ~/.config/clash/proxyIgnoreList.plist (if not exist, create it)
add rules

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
	<string>192.168.0.0/16</string>
	<string>10.0.0.0/8</string>
	<string>172.16.0.0/12</string>
	<string>127.0.0.1</string>
	<string>localhost</string>
	<string>*.local</string>
	<string>*.crashlytics.com</string>
	<!-- DO NOT DELETE THE ABOVE -->
        <string>*.overleaf.com</string>
</array>
</plist>```
EOF