前言
clash 修改了配置的写法(见文末“参考”中的链接)。如果想要兼容新版的 clash ,需要对网站文件进行一些改动
修改 clash.tpl
编辑文件 网站目录/resources/conf/clash.tpl
,将位于59行的
Proxy:
改为
proxies:
将位于64行的
Proxy Group:
改为
proxy-groups:
修改 ConfController.php
编辑文件 网站目录/app/Controllers/ConfController.php
,将372行的
$tmp['Proxy'] = $Proxys;
改为
$tmp['proxies'] = $Proxys;
将379行的
$tmp['Proxy Group'] = self::getClashConfProxyGroup(
改为
$tmp['proxy-groups'] = self::getClashConfProxyGroup(
参考
https://github.com/Dreamacro/clash/wiki/breaking-changes-in-1.0.0
发表回复