MacOS系统下某代理软件设置白名单不走Proxy
2025-04-21 本文已影响0人
YannChee
去下面目录,编辑如下文件(如果没有手动新建一个即可)
(记录贴,防止以后换电脑方便复制粘贴)
~/.config/clash/proxyIgnoreList.plist
编辑内容如下:
<?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>
<!--上面的不要删,在下面添加你想要忽略的域名-->
<string>*.lc.com</string>
<string>*-lc.com</string>
<string>*-local.com</string>
<string>*-.local.com</string>
<!-- 自定义 -------------------------------- start -->
<string>https://pag.io/*</string>
<string>https://www.jianshu.com/*</string>
<string>https://*.deepseek.*</string>
<string>https://www.pgyer.com/*</string>
<string>https://*.todesk.*</string>
<string>https://*.feishu.*</string>
<string>https://*.apple.*</string>
<string>https://*.bing.*</string>
<string>https://*.qq.*</string>
<!-- 自定义 -------------------------------- end -->
</array>
</plist>